Get Started
Studio API
- Introduction
- Streaming
- CMS
- Events
- Creative Works
- Entities
- Content Types
- Annotations
- Sports Standings
- OTT
- Monetization
- IAM
- Integration
- Analytics
Content Delivery API
Deep dive
Sports Standings
Create standing phase
CreateStandingPhase
Creates new standing phase.
POST
/
cms
/
standing_phases
/
v1
cURL
Copy
curl --request POST \
--url https://api.mottostreaming.com/cms/standing_phases/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"project_id": "<string>",
"localized_name": {},
"classifications": [
{
"id": "<string>",
"localized_name": {},
"localized_short_name": {}
}
],
"groups": [
{
"localized_name": {},
"entries": [
{
"entity_id": "<string>",
"entity_type": "<string>",
"stats": {}
}
]
}
]
}'
Copy
{
"standing_phase": {
"id": "<string>",
"project_id": "<string>",
"localized_name": {},
"classifications": [
{
"id": "<string>",
"localized_name": {},
"localized_short_name": {}
}
],
"groups": [
{
"localized_name": {},
"entries": [
{
"entity_id": "<string>",
"entity_type": "<string>",
"stats": {}
}
]
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
OK
The response is of type object
.
cURL
Copy
curl --request POST \
--url https://api.mottostreaming.com/cms/standing_phases/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"project_id": "<string>",
"localized_name": {},
"classifications": [
{
"id": "<string>",
"localized_name": {},
"localized_short_name": {}
}
],
"groups": [
{
"localized_name": {},
"entries": [
{
"entity_id": "<string>",
"entity_type": "<string>",
"stats": {}
}
]
}
]
}'
Copy
{
"standing_phase": {
"id": "<string>",
"project_id": "<string>",
"localized_name": {},
"classifications": [
{
"id": "<string>",
"localized_name": {},
"localized_short_name": {}
}
],
"groups": [
{
"localized_name": {},
"entries": [
{
"entity_id": "<string>",
"entity_type": "<string>",
"stats": {}
}
]
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.