Dolby.io · Arazzo Workflow

Dolby OptiView Provision a Broadcast Token with Cluster

Version 1.0.0

Discover the account cluster, create a publish token, then read it back to confirm.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub MediaStreamingReal-Time StreamingWebRTCLive StreamingLow LatencyVideoAudioBroadcastPlayerAdvertisingDolby OptiViewMillicastTHEOliveTHEOplayerArazzoWorkflows

Provider

dolby-io

Workflows

provision-broadcast-token-with-cluster
Resolve the cluster, create a publish token, and confirm it.
Reads the account cluster's publish URL, creates a publish token for a stream, and reads the new token back to confirm it is active.
3 steps inputs: authorization, label, streamName outputs: isActive, publishUrl, token, tokenId
1
getCluster
Discover the publish/subscribe URLs for the region the account is provisioned in.
2
createPublishToken
Create a publish token bound to the supplied stream name. Returns the token id and the broadcaster JWT.
3
confirmToken
Read the new publish token back and confirm it is active.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dolby OptiView Provision a Broadcast Token with Cluster
  summary: Discover the account cluster, create a publish token, then read it back to confirm.
  description: >-
    Prepares a broadcaster to go live on Dolby OptiView Real-time Streaming
    (Millicast). The workflow first discovers the region-specific publish URL
    for the account's provisioned cluster, then creates a publish token bound to
    a stream name, and finally reads the token back to confirm it is active. The
    create and read operations chain on the returned token id. Every step inlines
    its Bearer Authorization header and request body so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: clusterApi
  url: ../openapi/dolby-io-cluster-api-openapi.yml
  type: openapi
- name: publishtokenApi
  url: ../openapi/dolby-io-publishtoken-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-broadcast-token-with-cluster
  summary: Resolve the cluster, create a publish token, and confirm it.
  description: >-
    Reads the account cluster's publish URL, creates a publish token for a
    stream, and reads the new token back to confirm it is active.
  inputs:
    type: object
    required:
    - authorization
    - label
    - streamName
    properties:
      authorization:
        type: string
        description: Bearer Authorization header value (e.g. "Bearer <API Secret>").
      label:
        type: string
        description: Human-readable label for the publish token.
      streamName:
        type: string
        description: The stream name the publish token is bound to.
  steps:
  - stepId: getCluster
    description: >-
      Discover the publish/subscribe URLs for the region the account is
      provisioned in.
    operationId: getCluster
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      publishUrl: $response.body#/publishUrl
  - stepId: createPublishToken
    description: >-
      Create a publish token bound to the supplied stream name. Returns the
      token id and the broadcaster JWT.
    operationId: createPublishToken
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    requestBody:
      contentType: application/json
      payload:
        label: $inputs.label
        streams:
        - streamName: $inputs.streamName
          isRegex: false
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tokenId: $response.body#/id
      token: $response.body#/token
  - stepId: confirmToken
    description: >-
      Read the new publish token back and confirm it is active.
    operationId: getPublishToken
    parameters:
    - name: tokenID
      in: path
      value: $steps.createPublishToken.outputs.tokenId
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    - condition: $response.body#/isActive == true
    outputs:
      isActive: $response.body#/isActive
  outputs:
    publishUrl: $steps.getCluster.outputs.publishUrl
    tokenId: $steps.createPublishToken.outputs.tokenId
    token: $steps.createPublishToken.outputs.token
    isActive: $steps.confirmToken.outputs.isActive

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/dolby-io-provision-broadcast-token-with-cluster-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.