Skip to content

Retrieve a Member

Retrieve a specific member by their user ID.

The get member endpoint allows you to retrieve a specific member from your workspace by their user ID.

Endpoint

MethodUrl
GET/v1.0/members/{user_id}

Path Parameters

user_id
string
required

The unique identifier of the member to retrieve.

Sample Request

Copied
1curl -X GET 'https://api.worklayer.com/v1.0/members/a6e5ea2f-7d96-4852-9f46-2383dfd572f7' \
2-H 'Authorization: Bearer {token}'

Response

An instance of member resource.

Sample Response

Copied
1{
2 "email": "tony@stark.com",
3 "user_id": "a6e5ea2f-7d96-4852-9f46-2383dfd572f7",
4 "create_time": "2022-04-11T15:18:00.701Z",
5 "update_time": "2022-04-11T15:18:00.701Z"
6}

Errors

  1. Forbidden: API client does not have permission to view workspace members.
  2. Unauthorized: API client does not have valid credentials.
  3. NotFound: The specified member was not found in the workspace.
  4. BadRequest: The user ID provided is not in a valid format.

Last updated on December 2, 2025