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

Authorizations

Authorization
string
header
required

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

Response

OK

data
object
message
string
success
boolean