Multistream target
Create a multistream
POST
/
multistream
/
target
Authorization
Body
curl --request POST \
--url https://livepeer.studio/api/multistream/target \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"url": "rtmps://live.my-service.tv/channel/secretKey",
"disabled": true
}'
[
{
"id": "09F8B46C-61A0-4254-9875-F71F4C605BC7",
"name": "<string>",
"disabled": true,
"createdAt": 1587667174725
}
]
Authorizations
Authorization
string
headerrequiredBearer api-key
Body
application/json
name
string
url
string
requiredLivepeer-compatible multistream target URL (RTMP(S) or SRT)
disabled
boolean
If true then this multistream target will not be used for pushing even if it is configured in a stream object.
Response
201 - application/json
id
string
name
string
disabled
boolean
If true then this multistream target will not be used for pushing even if it is configured in a stream object.
createdAt
number
Timestamp (in milliseconds) at which multistream target object was created
Was this page helpful?
curl --request POST \
--url https://livepeer.studio/api/multistream/target \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"url": "rtmps://live.my-service.tv/channel/secretKey",
"disabled": true
}'
[
{
"id": "09F8B46C-61A0-4254-9875-F71F4C605BC7",
"name": "<string>",
"disabled": true,
"createdAt": 1587667174725
}
]