/getUsersDetails

Returns mapped devices and tag data for a specified userID.

👍

Enterprise API

Returns mapped devices and tag data for a specified userID.
Like every scheduled request, /getUsersDetails requires an additional /getResults request.

Response body

FieldTypeDescription
request_idstringScheduled request Id. Please check getResults method for more information

Scheduled (/getResults) response

{
  "status_code": 200,
  "status_message": "OK",
  "response": {
    "devices": [
      {
        "applicationCode": "APPLICATION_CODE",
        "hwid": "HWID",
        "pushToken": "PUSH_TOKEN",
        "type": 3,
        "tzOffset": 0,
        "tags": "{\"First Install\":\"2017-07-25\"}",
        "badges": 0,
        "androidPackages": "[]",
        "latitude": null,
        "longitude": null,
        "publicKey": "",
        "authToken": "",
        "userId": "myuser_id321"
      }
    ]
  }
}
Language
Click Try It! to start a request and see the response here!