Update a sub-composition's content
To update a sub-composition's content, you'll need two things:
The app token for the particular instance of the control app you're using
With that data on hand
Prepare a
PATCHrequest tohttps://app.singular.live/apiv2/controlapps/:appToken/control, which is the endpoint to update a control app.Replace
:appTokenwith the app token for your app instance.Add a request body with the actual sub-composition ID and payload structure, and include the updates you'd like to make. The request body should look like this, but with sub-composition name or ID and payload data filled in.
[
{
"subCompositionName": "your-subcomposition-name",
"payload": {
"controlnode-field": "control node content"
}
}
][
{
"subCompositionId": "your-subcomposition-id",
"payload": {
"controlnode-field": "control node content"
}
}
]After sending the request, you should get a 200 OK response with a payload of { "success": true }.
Last updated
Was this helpful?