SupportWire API
API ReferenceUsers

List team members

Required scope: `users:read`.

GET
/api/oauth/v1/users

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth access token, e.g. Authorization: Bearer swot_….

In: header

Response Body

application/json

curl -X GET "https://example.com/api/oauth/v1/users"
{
  "data": [
    {
      "id": "string",
      "role": "admin",
      "archived": true,
      "user": {
        "id": "string",
        "name": "string",
        "email": "string",
        "instagram_handle": "string",
        "profile_picture_url": "string"
      }
    }
  ]
}