Create a data item in your workspace.
If your workspace has a Journey with On Create trigger, that Journey will be triggered upon a successful request
https://next.seen.io/v1/workspaces/{Workspace_ID}/data
<aside>
You can find you Workspace ID in your SEEN Platform account Settings.
</aside>
POST
Authorization
This header is common to all requests to our API. Please see the “Authorization” section for more details.
Content-Type
Content-Type should be configured as application/json
Here is an example of a payload. Fields can differ depending on setup.
The expected request body follows the below structure:
{
"crm_id":"12345",
"first_name":"John",
"last_name":"Rowley",
"country":"Norway"
}
<aside>
If you want the SEEN Platform to prevent duplicate records, use the default id field in your payload. Requests with the same id will be treated as the same entity.
If you want to allow multiple videos for the same id (for example, when generating different videos for the same person at different stages of the customer journey), create and store the external identifier in a separate custom property instead (e.g. crm_id).
</aside>
If Webhook is enabled for a Journey, it's recommended to supply a unique ID for each data item, that can be used to match each data item between our respective systems.
Additional fields should match the workspace properties.
SEEN API accepts single JSON objects only. Arrays are not supported at the moment