GET webusers/sync/changes
8.06.0002
Intro version: 8.06.0002
Request
URL parameters
None.
Response
WebUserSyncResultName | Description | Type | Additionnal Information | Intro version |
---|---|---|---|---|
user | Simplified Web user structure for synchronization | Collection of UserSync | ||
token | Token of this result's last entry. This token can be passed the next time you call this API to get the rest of the modified data | string | ||
count | Number of entries in this lot | integer | ||
queuecount | Number of remaining prices to recover | integer | ||
returncode | Return code: 0 for success | integer | ||
returnmsg | Return message | string | ||
warnings | Warnings (the instruction worked but you need to pay attention to warnings. May cause partial data loss (Truncation)) | Collection of string | ||
version | API version | string |
Return format
application/json, text/json, application/x-www-form-urlencoded
Sample:
{ "user": [ { "idwebuser": 1, "email": "sample string 2", "user_firstname": "sample string 3", "user_lastname": "sample string 4", "cust_id": 5, "cust_no": "sample string 6", "adrliv_id": 7, "isActiveWeb": 8 }, { "idwebuser": 1, "email": "sample string 2", "user_firstname": "sample string 3", "user_lastname": "sample string 4", "cust_id": 5, "cust_no": "sample string 6", "adrliv_id": 7, "isActiveWeb": 8 } ], "token": "sample string 1", "count": 2, "queuecount": 3, "returncode": 4, "returnmsg": "sample string 5", "warnings": [ "sample string 1", "sample string 2" ], "version": "sample string 6" }
application/xml, text/xml
Sample:
<result returncode="4" returnmsg="sample string 5" version="sample string 6" token="sample string 1" count="2" queuecount="3"> <warnings>sample string 1</warnings> <warnings>sample string 2</warnings> <user idwebuser="1" email="sample string 2" user_firstname="sample string 3" user_lastname="sample string 4" cust_id="5" cust_no="sample string 6" adrliv_id="7" isActiveWeb="8" /> <user idwebuser="1" email="sample string 2" user_firstname="sample string 3" user_lastname="sample string 4" cust_id="5" cust_no="sample string 6" adrliv_id="7" isActiveWeb="8" /> </result>