Skip to content

User Account APIs

Use the following APIs to retrieve user account details.

1. Get user account details

User account details such as account holder's email ID, maximum device license limit subscribed for the plan, number of devices currently added to the account etc., can be retrieved using the following API.

curl https://api.socketxp.com/v1/account \
  -X GET \
  -H "Authorization: Bearer <your-auth-token-goes-here>" 

Sample Usage

curl https://api.socketxp.com/v1/account \
  -X GET \
  -H "Authorization: Bearer <your-auth-token-goes-here>" 

Sample Response

200 OK

{
  "UserEmail": "[email protected]",
  "PlanMaxDeviceLimit": 3000,
  "NumDevicesAdded": 2567
}