Modify the casting of several entities of a project in a single request. The request body maps entity ids to casting arrays, each following the same format as the single entity casting route.
PUT
/data/projects/{project_id}/entities/casting
curl \
--request PUT 'http://api.example.com/data/projects/a24a6ea4-ce75-4665-a070-57453082c25/entities/casting' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"additionalProperty1":[{"asset_id":"string","nb_occurences":42}],"additionalProperty2":[{"asset_id":"string","nb_occurences":42}]}'
Request examples
{
"additionalProperty1": [
{
"asset_id": "string",
"nb_occurences": 42
}
],
"additionalProperty2": [
{
"asset_id": "string",
"nb_occurences": 42
}
]
}
Response examples (200)
{}