curl --request PATCH \
--url https://api.mottostreaming.com/cms/standing_phases/v1/{standing_phase_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"standing_phase_id": "<string>",
"standing_phase": {
"project_id": "<string>",
"localized_name": {},
"classifications": [
{
"id": "<string>",
"localized_name": {},
"localized_short_name": {},
"priority": "<string>"
}
],
"groups": [
{
"localized_name": {},
"entries": [
{
"entity_id": "<string>",
"entity_type": "<string>",
"stats": {}
}
]
}
]
},
"update_mask": "<string>"
}'
{
"standing_phase": {
"id": "<string>",
"project_id": "<string>",
"localized_name": {},
"classifications": [
{
"id": "<string>",
"localized_name": {},
"localized_short_name": {},
"priority": "<string>"
}
],
"groups": [
{
"localized_name": {},
"entries": [
{
"entity_id": "<string>",
"entity_type": "<string>",
"stats": {}
}
]
}
]
}
}
UpdateStandingPhase
Updates existing standing phase.
curl --request PATCH \
--url https://api.mottostreaming.com/cms/standing_phases/v1/{standing_phase_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"standing_phase_id": "<string>",
"standing_phase": {
"project_id": "<string>",
"localized_name": {},
"classifications": [
{
"id": "<string>",
"localized_name": {},
"localized_short_name": {},
"priority": "<string>"
}
],
"groups": [
{
"localized_name": {},
"entries": [
{
"entity_id": "<string>",
"entity_type": "<string>",
"stats": {}
}
]
}
]
},
"update_mask": "<string>"
}'
{
"standing_phase": {
"id": "<string>",
"project_id": "<string>",
"localized_name": {},
"classifications": [
{
"id": "<string>",
"localized_name": {},
"localized_short_name": {},
"priority": "<string>"
}
],
"groups": [
{
"localized_name": {},
"entries": [
{
"entity_id": "<string>",
"entity_type": "<string>",
"stats": {}
}
]
}
]
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK
The response is of type object
.