POST API/V1/Mobile/{patientId}/SyncRead
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| patientId | integer |
Required |
Body Parameters
iMDsoft.API.Controllers.Mobile.Data.SyncObjectReadRequestBundle| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of iMDsoft.API.Controllers.Mobile.Data.SyncObjectReadRequestItem |
None. |
|
| FromDateTime | date |
None. |
|
| ToDateTime | date |
None. |
|
| ClientConfig | iMDsoft.API.Controllers.Mobile.Data.SyncObjectReadRequestClientConfiguration |
None. |
Request Formats
application/json, text/json
Sample:
{
"items": [
{
"objectType": "Order",
"dbTimeStamp": "sample string 1"
},
{
"objectType": "Order",
"dbTimeStamp": "sample string 1"
}
],
"fromDateTime": "2025-11-03T13:09:40.5645823+02:00",
"toDateTime": "2025-11-03T13:09:40.5645823+02:00",
"clientConfig": {
"deviceMappingName": "sample string 1",
"trendSequences": [
"sample string 1",
"sample string 2"
],
"syncAdministeredDosesStatusFilter": "sample string 2",
"syncLabResultsFromNumberOfDays": 1,
"signalTrendSearchResultCount": 1
}
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
iMDsoft.API.Controllers.Mobile.Data.SyncObjectReadResponseBundle| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientId | integer |
None. |
|
| Items | Collection of iMDsoft.API.Controllers.Mobile.Data.SyncObjectReadResponseItem |
None. |
Response Formats
application/json, text/json
Sample:
{
"patientId": 1,
"items": [
{
"request": {
"objectType": "Order",
"dbTimeStamp": "sample string 1"
},
"responseItems": [
{},
{}
]
},
{
"request": {
"objectType": "Order",
"dbTimeStamp": "sample string 1"
},
"responseItems": [
{},
{}
]
}
]
}