SupportWire API
API ReferenceUsers

Get team member

Required scope: `users:read`.

GET
/api/oauth/v1/users/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

id*string

Membership ID.

Response Body

application/json

application/json

curl -X GET "https://example.com/api/oauth/v1/users/string"
{
  "data": {
    "id": "string",
    "role": "admin",
    "archived": true,
    "user": {
      "id": "string",
      "name": "string",
      "email": "string",
      "instagram_handle": "string",
      "profile_picture_url": "string"
    }
  }
}
{
  "error": "insufficient_scope",
  "error_description": "The token is missing a required scope."
}