GET api/sync/Check?trackId={trackId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
trackId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
SyncBatchTableName | Description | Type | Additional information |
---|---|---|---|
PartitionKey | string |
None. |
|
RowKey | string |
None. |
|
Timestamp | date |
None. |
|
ETag | string |
None. |
|
CreationDate | date |
None. |
|
ReceptionDate | date |
None. |
|
Status | integer |
None. |
|
StatusMessage | string |
None. |
|
XmlResponse | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "PartitionKey": "sample string 1", "RowKey": "sample string 2", "Timestamp": "2024-11-21T10:13:58.4913145+00:00", "ETag": "sample string 4", "CreationDate": "2024-11-21T10:13:58.4913145+00:00", "ReceptionDate": "2024-11-21T10:13:58.4913145+00:00", "Status": 7, "StatusMessage": "sample string 8", "XmlResponse": "sample string 9" }
application/xml, text/xml
Sample:
<SyncBatchTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Global.Gosocket.LegacySoapService.Controllers"> <CreationDate>2024-11-21T10:13:58.4913145+00:00</CreationDate> <ETag>sample string 4</ETag> <PartitionKey>sample string 1</PartitionKey> <ReceptionDate>2024-11-21T10:13:58.4913145+00:00</ReceptionDate> <RowKey>sample string 2</RowKey> <Status>7</Status> <StatusMessage>sample string 8</StatusMessage> <Timestamp>2024-11-21T10:13:58.4913145+00:00</Timestamp> <XmlResponse>sample string 9</XmlResponse> </SyncBatchTable>