GET
/
company
/
users
curl --request GET \
  --url http://sandbox.mintlify.com/company/users \
  --header 'Authorization: Bearer <token>'
{
  "status": "ok",
  "message": "<string>",
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "email": "jsmith@example.com",
      "fullname": "<string>",
      "role": "<string>",
      "permissions": [
        123
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
Company users response
status
enum<string>
Available options:
ok,
error
message
string
data
object[]