<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"
}
ID
is a required field, and must be sent as a string
.
If Webhook is enabled for a Journey, it's recommended to supply a unique id (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