v1

latestOpenAPI 3.0.32026-08-06138294578.6 KB
Users

List Partner Users

Lists all users in the specified organization.

🚧 Requires partner key

User endpoints are only accessible using partner keys.

Returns user records including each user's ID, email, and assigned roles.

get/api/organizations/{org_id}/users

Path parameters

org_idstring uuid required

Unique identifier of the organization whose users should be listed.

Example:248df4b7-aa70-47b8-a036-33ac447e668d

Unique identifier of the organization whose users should be listed.

Headers

X-Polytomic-Versionstring

Response

OK

Example response

{
  "data": [
    {
      "email": "mail@example.com",
      "role": "admin",
      "role_ids": [
        "248df4b7-aa70-47b8-a036-33ac447e668d"
      ]
    }
  ]
}