Create a data item in your Project.
If your Project has a published video, sending in data will generate a version of the video.
https://next.seen.io/v1/projects/{Project_ID}/data
<aside>
You can find your endpoint in the Run-page of your project.
</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
<aside>
You can copy the headers from the Run-page of your project.
</aside>
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 your project 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 from the same project for the same id (for example, generating a birthday video for the same person 2 years in a row), create and store the external identifier in a separate custom property instead (e.g. crm_id).
</aside>
If Webhook is enabled, 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.