GET
/
streaming
/
rtmp_ingests
/
v1
curl --request GET \
  --url https://api.mottostreaming.com/streaming/rtmp_ingests/v1 \
  --header 'Authorization: Bearer <token>'
{
  "rtmp_ingests": [
    {
      "id": "<string>",
      "project_id": "<string>",
      "region": "REGION_UNSPECIFIED",
      "key": "<string>",
      "connected": true,
      "disabled": true,
      "name": "<string>",
      "description": "<string>",
      "pull_url": "<string>"
    }
  ],
  "next_page_token": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page_size
integer
project_id
string
page_token
string
filter
string

Filter the result-set by properties using a subset of the Kibana Query Language. Only AND statements are supported. E.g. not name:"" or connected:true. On the name field, prefix and suffix matching is supported to simulate searching, e.g. name:*foo*

order_by
string

Specifies the result ordering for List requests. If this is not provided, the default order is by ID. Supported values are:

  • "name asc|desc"
  • "connected asc|desc"

Response

200
application/json
OK
rtmp_ingests
object[]
next_page_token
string