ProZ.com global directory of translation services
The translation workplace
Ideas

GET: /user-list/:user-list-id/collaborator

Get a collection of UserListCollaborator for a given UserList ID.

Required authorization scope

When using OAuth2 access tokens, the userlist scope is required to create an entry. See scopes in the authentication guide for information about how to request this scope of authorization.

Parameters

  • user-list-id: The UserList ID.

Example request

curl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" https://api.proz.com/v2/user-list/17/collaborator

Response

Returns a collection of UserListCollaborator objects.

{
  "user_list_collaborators": [
    {
  "entity_list_collaborator_id": 17,
  "entity_list_id": 3,
  "entity_id": 46745,
  "entity_link": "https://api.proz.com/v2/users/ad00b4f1-7b79-461d-92bd-57b4373ef1cb",
  "permission": "admin"
}
  ]
}