Fetch specific object

Note that some of the features that can be controlled via the API are related to the permissions assigned to your access token (seller, customer etc. with subcategories). Please contact Skyresponse support if any Forbidden responses occur.

Fetch object/user by ID from Skyresponse Admin

To retrieve the full object model from a previously fetched list you should perform a GET method against /api/users/{id} where id is the UserId key from the object model.

GET /api/users/{id} HTTP/1.1
Host: https://admin.skyresponse.com
Authorization: Bearer tkgY9yiM...plBp

If you don’t know how to get the Authorization header, please proceed to the Authentication tutorial

After the request you will recieve the full object model:

{
  "Name": "Demo User",
  "Email": "demo.user@demo.eu",
  "Pin": "12345",
  "Password": "",
  "IMEI": "1111111111",
  "SimId": "111111111111",
  "SimIdExtra": "111111111111111",
  "TransmitterCode": "",
  "ProductId": 0,
  "RegistrationTime": "2014-09-16T16:57:23Z",
  "Active": true,
  "Deleted": false,
  "SmsInvalid": false,
  "ExchangeTelephoneNumber": "",
  "ClientVersion": "3.1-alpha3:eu.skygd.skygdandro",
  "Manufacturer": "",
  "Model": "",
  "DateOfBirth": null,
  "Gender": 0,
  "Title": "",
  "FirstLanguage": "",
  "SecondLanguage": "",
  "ThirdLanguage": "",
  "ThreatPin": "",
  "CitizenShip": "",
  "NextServiceId": 523,
  "NationalIdNumber": "",
  "Profession": "",
  "EthnicGroup": 0,
  "Height": null,
  "Weight": null,
  "HairColour": 0
}

And a lot more useful data!


cURL example:

Example of fetch objects with query params:

curl -X GET 'https://admin.skyresponse.com/api/users/1' -H "Authorization: Bearer PASTE_YOUR_TOKEN_HERE"

Full documentation:
Topics:

Fetch specific object

Note that some of the features that can be controlled via the API are related to the permissions assigned to your access token (seller, customer etc. with subcategories). Please contact Skyresponse support if any Forbidden responses occur.

Fetch object/user by ID from Skyresponse Admin

To retrieve the full object model from a previously fetched list you should perform a GET method against /api/users/{id} where id is the UserId key from the object model.

GET /api/users/{id} HTTP/1.1
Host: https://admin.skyresponse.com
Authorization: Bearer tkgY9yiM...plBp

If you don’t know how to get the Authorization header, please proceed to the Authentication tutorial

After the request you will recieve the full object model:

{
  "Name": "Demo User",
  "Email": "demo.user@demo.eu",
  "Pin": "12345",
  "Password": "",
  "IMEI": "1111111111",
  "SimId": "111111111111",
  "SimIdExtra": "111111111111111",
  "TransmitterCode": "",
  "ProductId": 0,
  "RegistrationTime": "2014-09-16T16:57:23Z",
  "Active": true,
  "Deleted": false,
  "SmsInvalid": false,
  "ExchangeTelephoneNumber": "",
  "ClientVersion": "3.1-alpha3:eu.skygd.skygdandro",
  "Manufacturer": "",
  "Model": "",
  "DateOfBirth": null,
  "Gender": 0,
  "Title": "",
  "FirstLanguage": "",
  "SecondLanguage": "",
  "ThirdLanguage": "",
  "ThreatPin": "",
  "CitizenShip": "",
  "NextServiceId": 523,
  "NationalIdNumber": "",
  "Profession": "",
  "EthnicGroup": 0,
  "Height": null,
  "Weight": null,
  "HairColour": 0
}

And a lot more useful data!


cURL example:

Example of fetch objects with query params:

curl -X GET 'https://admin.skyresponse.com/api/users/1' -H "Authorization: Bearer PASTE_YOUR_TOKEN_HERE"

Full documentation: