Skip to main content
GET
/
users
/
{user_id}
Get User
curl --request GET \
  --url https://sandbox.sturdytechnologies.com/v3/users/{user_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "email": "[email protected]",
    "firstname": "John",
    "lastname": "Doe",
    "telephone": "+1234567890",
    "user_id": "12345"
  },
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

user_id
string
required

User Identifier

Response

OK

data
object
message
string
success
boolean