Update a sub-composition's animation state
To send overlays to their In and Out states, you'll need two things:
The app token for the particular instance of the control app you're using
The sub-composition ID and payload structure of the overlay you want to update
With that data on hand
Prepare a
PATCHrequest tohttps://app.singular.live/apiv2/controlapps/:appToken/control, which is the endpoint to animate a control app In and Out.Replace
:appTokenwith the actual app token for your app instance.Add a request body with the actual sub-composition ID and update the value of the sub-composition's state to
InorOut. The request body should look like this, but with sub-composition ID and state filled in.
[
{
"subCompositionName": "your-subcomposition-name",
"state": "<toState>"
}
][
{
"subCompositionId": "your-subcomposition-id",
"state": "<toState>"
}
]After sending the request, you should get a 200 OK response with a payload of { "success": true }.
Last updated
Was this helpful?