GET api/GetWhatToSync?AuthToken={AuthToken}
Provides a list of items that need to be syncronized. This should be called each time a sync is performed to determine what data will need to sync / Status codes, Products etc Each item in the list referes to a Method in the API - e.g. CarColours implies a call is needed to the api/GetStringList?AuthToken=&ListName=CarColours to get a new list of the colours on the system. If new items are added to the system this will ensure all are correct on the remote clients.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| AuthToken |
AuthToken from Authentication Method |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of stringResponse Formats
application/json, text/json
Sample:
[ "sample string 1", "sample string 2" ]
application/xml, text/xml
Sample:
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <string>sample string 1</string> <string>sample string 2</string> </ArrayOfstring>