-
- Translation help networkKudoZOther terminology resourcesLearn more: About terminology at ProZ.com
-
-
GET: /user-list/:idGet a single UserList object by ID. Required authorization scope
When using OAuth2 access tokens, the Parameters
Example requestcurl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" https://api.proz.com/v2/user-list/17
ResponseA JSON object with the following property:
{
"user_list": {
"id": 17,
"parent_id": 3,
"name": "My Vendors",
"description": "This is a description of My Vendors list.",
"users": [
{
"id": 46745,
"link": "https://api.proz.com/v2/users/ad00b4f1-7b79-461d-92bd-57b4373ef1cb",
"operation": "include"
},
{
"id": 105392,
"link": "https://api.proz.com/v2/users/74d33be4-43d0-4789-8d81-9a60eca97ba9",
"operation": "include"
},
{
"id": 72743,
"link": "https://api.proz.com/v2/users/6e4f5d74-e38a-425f-a98e-ed59c6cd9a72",
"operation": "exclude"
}
]
}
}
|