Commerz Data
These endpoints are dedicated to retrieve all users.
Users
List users.
HTTP Request
Request type
GET
Endpoint
https://api.datenly.com/api/commerzdata/users?page=<PAGE>&sync_status=<SYNC_STATUS>&connected_time_from=<TIME_FROM>&connected_time_to=<TIME_TO>&group=<GROUP>&market=<MARKET>
Parameters
Parameter | Type | Description |
---|---|---|
PAGE | int | This endpoint return 50 tickets per call, PAGE is the parameter to navigate to the next results If is not specified PAGE = 1 |
SYNC_STATUS | Boolean | If the synchronization is activated |
TIME_FROM | int | Return results where the time the user was created is greater than this value |
TIME_TO | int | Return results where the time the user was created is lower than this value |
GROUP | String | Group name |
MARKET | String | Market uuid |
Response Parameters
Parameter | Type | Description |
---|---|---|
status | Boolean | Processing status of your request |
pagination | Object | Browsing information |
pagination.current_page | int | Current page number |
pagination.total_page | int | Total number of pages available |
pagination.total_row | int | The total number of items available |
users | Array | List of users uuid |
Example
Request
curl 'https://api.datenly.com/api/commerzdata/users?page=<PAGE>&sync_status=<SYNC_STATUS>&connected_time_from=<TIME_FROM>&connected_time_to=<TIME_TO>&group=<GROUP>&market=<MARKET>' \
-H "Authorization: <token>"