Get a team member
URL
GET https://api.complycube.com/v1/teamMembers/:id
This endpoint allows you to retrieve a specific team member.
Headers
Name
Type
Description
Authorization
*
string
The API live
or test
key.
Path parameters
Name
Type
Description
id
*
string
The ID of the team member.
Example request
curl -X GET https://api.complycube.com/v1/teamMembers/{:teamMemberId} \
-H 'Authorization: <YOUR_API_KEY>'
Example responses
{
"id": "VNARgK33nMASdJKdi",
"firstName": "John",
"lastName": "Doe",
"role": "owner",
"createdAt": "2020-01-01T10:15:42.087Z"
}
Last updated
Was this helpful?