Get a relay
client.moq.relays.get(stringrelayId, RelayGetParams { account_id } params, RequestOptionsoptions?): RelayGetResponse { config, created, modified, 3 more }
GET/accounts/{account_id}/moq/relays/{relay_id}
Retrieves a single MoQ relay including config and status. Tokens are NOT included.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
Get a relay
import Cloudflare from 'cloudflare';
const client = new Cloudflare({
apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted
});
const relay = await client.moq.relays.get('a1b2c3d4e5f67890a1b2c3d4e5f67890', {
account_id: '023e105f4ecef8ad9ca31a8372d0c353',
});
console.log(relay.uid);{
"errors": [
{
"code": 0,
"message": "message"
}
],
"messages": [
{
"code": 0,
"message": "message"
}
],
"success": true,
"result": {
"config": {
"lingering_subscribe": {
"enabled": true,
"max_timeout_ms": 0
},
"origin_fallback": {
"enabled": true,
"origins": [
{
"url": "url"
}
]
}
},
"created": "2019-12-27T18:11:19.117Z",
"modified": "2019-12-27T18:11:19.117Z",
"name": "Production Live Stream",
"uid": "a1b2c3d4e5f67890a1b2c3d4e5f67890",
"status": "connected"
}
}Returns Examples
{
"errors": [
{
"code": 0,
"message": "message"
}
],
"messages": [
{
"code": 0,
"message": "message"
}
],
"success": true,
"result": {
"config": {
"lingering_subscribe": {
"enabled": true,
"max_timeout_ms": 0
},
"origin_fallback": {
"enabled": true,
"origins": [
{
"url": "url"
}
]
}
},
"created": "2019-12-27T18:11:19.117Z",
"modified": "2019-12-27T18:11:19.117Z",
"name": "Production Live Stream",
"uid": "a1b2c3d4e5f67890a1b2c3d4e5f67890",
"status": "connected"
}
}