Skip to main content
GET
/
members
/
{id}
Get a member
curl --request GET \
  --url https://api.tomorro.com/members/{id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "user": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "username": "jsmith@example.com",
      "firstname": "<string>",
      "lastname": "<string>"
    },
    "role": "user",
    "status": "active",
    "contracts": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "title": "<string>",
        "role": "creator",
        "status": "<string>"
      }
    ],
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}
Retrieves detailed information about a specific member by their unique identifier.

Path Parameters

ParameterTypeDescription
idstring (UUID)The unique identifier of the member

Response

The response includes the member’s profile information, role, status, and associated contracts.

Member Object

FieldTypeDescription
idstringUnique identifier
userobjectUser profile (id, username, firstname, lastname)
rolestringMember role: user, manager, or admin
statusstringCurrent status: active, disabled, or pending
contractsarrayList of contracts the member is associated with
createdAtstringISO 8601 timestamp of creation
updatedAtstringISO 8601 timestamp of last update

Authorizations

x-api-key
string
header
required

Your Tomorro API key. You can generate one from your organization settings.

Path Parameters

id
string<uuid>
required

The unique identifier of the member

Response

Member details

API response wrapper for a single member

data
object
required

A member of your organization