Visit appVisit websiteBook a demo
  • Get Started
    • Welcome
  • Client API
LogoLogo
Visit appVisit websiteBook a demo
Client APIClient Data Lists

POST
https://host.com/client_data_lists/:client_data_list_id/
POST
/client_data_lists/:client_data_list_id/
1curl -X POST /client_data_lists/client_data_list_id/ \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "data_list_options": [
6 {
7 "value": "string",
8 "label": "string"
9 }
10 ]
11}'
Try it
202Accepted
1{
2 "async_request": {
3 "async_request_id": "string",
4 "async_request_url": "string",
5 "state": "string",
6 "source": "string",
7 "created_at": "2024-01-15T09:30:00Z",
8 "processed_at": "2024-01-15T09:30:00Z",
9 "error_message": "string"
10 }
11}
Was this page helpful?
Previous

By External Id Create

Next
Built with
Update a client data list asynchronously by public ID. This endpoint allows you to update a client data list by its public ID. The data list is updated asynchronously and the response contains the async request ID.
Create

Authentication

AuthorizationBearer
Bearer authentication of the form `Bearer <token>`, where token is your auth token.

Path parameters

client_data_list_idstringRequiredformat: "^cldlst_c[a-z0-9]{24}$"

Request

This endpoint expects an object.
data_list_optionslist of objectsRequired
Array of options to update in the data list

Response

async_requestobject
The asynchronous request object. This object represents a request that has been submitted for further background processing.

Bearer authentication of the form Bearer <token>, where token is your auth token.