-
- Translation help networkKudoZOther terminology resourcesLearn more: About terminology at ProZ.com
-
-
GET: /user-listGet a collection of UserList objects that match a set of criteria. Required authorization scope
When using OAuth2 access tokens, the Parameters
Search criteria (all are optional besides
uuid):
Example requestcurl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" https://api.proz.com/v2/wiwo?uuid=me&listed_uuid=ad00b4f1-7b79-461d-92bd-57b4373ef1cb
ResponseReturns a collection of UserList objects.
{
"user_lists": [
{
"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"
}
]
}
]
}
|