Get Started
Studio API
- Introduction
- Streaming
- Live Streams
- Simulcasts
- Clips
- Videos
- Video Protection
- Configurations
- Assets
- CMS
- OTT
- Monetization
- IAM
- Integration
- Analytics
Content Delivery API
Deep dive
RTMP Ingests
Update rtmp ingest
PATCH
/
streaming
/
rtmp_ingests
/
v1
/
{rtmp_ingest_id}
curl --request PATCH \
--url https://api.mottostreaming.com/streaming/rtmp_ingests/v1/{rtmp_ingest_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"rtmp_ingest_id": "<string>",
"rtmp_ingest": {
"region": "REGION_UNSPECIFIED",
"disabled": true,
"name": "<string>",
"description": "<string>",
"pull_url": "<string>"
},
"update_mask": "<string>"
}'
{
"rtmp_ingest": {
"id": "<string>",
"project_id": "<string>",
"region": "REGION_UNSPECIFIED",
"key": "<string>",
"connected": true,
"disabled": true,
"name": "<string>",
"description": "<string>",
"pull_url": "<string>"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Response
200
application/json
OK
Available options:
REGION_UNSPECIFIED
, REGION_AF
, REGION_AS
, REGION_EU
, REGION_NA
, REGION_OC
, REGION_SA
curl --request PATCH \
--url https://api.mottostreaming.com/streaming/rtmp_ingests/v1/{rtmp_ingest_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"rtmp_ingest_id": "<string>",
"rtmp_ingest": {
"region": "REGION_UNSPECIFIED",
"disabled": true,
"name": "<string>",
"description": "<string>",
"pull_url": "<string>"
},
"update_mask": "<string>"
}'
{
"rtmp_ingest": {
"id": "<string>",
"project_id": "<string>",
"region": "REGION_UNSPECIFIED",
"key": "<string>",
"connected": true,
"disabled": true,
"name": "<string>",
"description": "<string>",
"pull_url": "<string>"
}
}