-
- Translation help networkKudoZOther terminology resourcesLearn more: About terminology at ProZ.com
-
-
POST: /user-list
Add a new UserList.
Required authorization scope
When using OAuth2 access tokens, the ParametersPass the JSON representation of the UserList as the POST data. Example requestHere's an example of submitting a request using
curl -H 'Content-Type: application/json' \
-H 'Authorization: Bearer OAUTH2_ACCESS_TOKEN' \
-d '{
"name": "My Vendors",
"description": "A description of this list.",
"parent_id": 123,
"users": [
{
"uuid": "32a9a4d0-cb6e-463f-a0ab-63d0a0418bc7",
"operation": "include"
},
{
"uuid": "20c66651-85f4-40c7-9d53-13201bde6ad2"
},
{
"uuid": "4db49e76-e0b1-44e5-8d64-8def1250f495",
"operation": "exclude"
}
]
}' \
https://api.proz.com/v2/user-list
ResponseOn success, a On error, a standard error response will be returned. |