<aside>
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
</aside>
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:
{
"id":"12345",
"first_name":"John",
"last_name":"Rowley",
"country":"Norway"
}
<aside>
If you want Seen Platform to block duplicate ID’s to be created, you can use the default id field in your payload.
If you want to be able to create duplicates (such as in cases where you would generate different videos to the same contact in different stages of the customer journey), you can create a separate Property to post their ID on (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