Submit data
POST /api/v1/data_sets
Send custom KVPs to Datastore to be retrieved later.
Headers
Header | Description |
---|---|
Authorization | Requires "Bearer " plus the API Token of the Data Set Template |
content-type | Requires application/json |
Parameters
Parameter | Description | Data Type |
---|---|---|
url | The full URL of the endpoint (example: https://datastore.mindfulcx.com/api/v1/data_sets) | string |
customer_contact_number | The customer contact number will be used as the search key when storing and retrieving the data. | string |
data_values | A JSON object assigning values to all Data Keys configured for the Data Set Template. | JSON |
Example request
Status codes
Status Code | Description |
---|---|
200 OK | The request was processed successfully. |
401 Unauthorized | "error": "InvalidToken" indicates an issue with the Authorization header. |
Example response
Model
Property | Description | Data Type |
---|---|---|
customer_contact_number | The customer callback number to be used as the search key for the data you submit. If the customer enters a different callback number, Mindful will automatically update the value of customer_contact_number. | string |
ani | The detected customer ANI, which could differ from the customer_contact_number if the customer provides a different callback number. | string |
ecbt | The Estimated Callback Time set by Mindful after a callback is registered for the customer_contact_number. | integer (seconds) |
data_set_template_id | The ID of the Data Set Template | string |
data_set_template_name | The friendly name of the Data Set Template | string |
time_to_expire | A timestamp indicating when the data will be automatically removed
| timestamp |
Your data values | Any KVPs you submitted in the data_values object. | string |