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
Create rtmp ingest
POST
/
streaming
/
rtmp_ingests
/
v1
Copy
curl --request POST \
--url https://api.mottostreaming.com/streaming/rtmp_ingests/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"region": "REGION_UNSPECIFIED",
"disabled": true,
"name": "<string>",
"description": "<string>",
"pull_url": "<string>"
}'
Copy
{
"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.
Body
application/json
Response
200
application/json
OK
Response message for CreateRTMPIngest.
Copy
curl --request POST \
--url https://api.mottostreaming.com/streaming/rtmp_ingests/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"region": "REGION_UNSPECIFIED",
"disabled": true,
"name": "<string>",
"description": "<string>",
"pull_url": "<string>"
}'
Copy
{
"rtmp_ingest": {
"id": "<string>",
"project_id": "<string>",
"region": "REGION_UNSPECIFIED",
"key": "<string>",
"connected": true,
"disabled": true,
"name": "<string>",
"description": "<string>",
"pull_url": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.