patch https://{app}.{filespin}.{io}/api/v1/user/settings/update?update_key=addons
Update addons
by sending below payload.
Note: This update will overwrite the entire addons settings. All addon keys must be must be supplied along with their corresponding target state for added
and enabled
.
All addons that support event hooks can be updated using this API
Pre-requisite: Addon must be available for the user account. Contact Support if addon is not available for the account.
REQUEST PAYLOAD
{
"key": "addons",
"value": {
"STORYBOARD": {
"added": true,
"enabled": true
}
}
}
added
specifies whether the user has added this available addon to their accountenabled
specifies whether this addon has been activated by user
Parameters | Type | Description |
---|---|---|
key | string | Set toaddons |
value | JSON | To add the available addon to the profile, set added to true . To enable an addon that has been added , set enabled to true . An addon has to be both added and enabled for it to be part of the processing pipeline. |