Fetch User by ID¶
GET https://api.copper.com/developer_api/v1/users/{{example_user_id}}
This endpoint returns details about a specific user within a company.
Special ID "me" can be passed in to obtain the current API user
Response body¶
The response is a JSON object with the following structure:
Field | Type | Details |
---|---|---|
id | identifier | The User's unique identifier. |
name | string | The User's full name. |
string | The User's email address. | |
groups | object[] | A list of teams (previously known as "Groups") that the User belongs to. Each one has the following fields:
|
Example¶
curl --location --request GET "https://api.copper.com/developer_api/v1/users/{{example_user_id}}" \
--header "X-PW-AccessToken: YOUR_TOKEN_HERE" \
--header "X-PW-Application: developer_api" \
--header "X-PW-UserEmail: YOUR_EMAIL_HERE" \
--header "Content-Type: application/json"
{
"id": 159258,
"name": "Demo User",
"email": "demouser@example.com",
"groups": [{
"id": 1,
"name": "Sales"
}]
}