Networked Media Open Specifications

Node to Registry Interactions (IS-04)

←Node to Authorization Server Interactions · Index↑ · Controller to Authorization Server Interactions→

Registering with the NMOS Registry

Once the Node has registered with the Authorization Server, and acquired a Bearer Token, the next step is for it to register with the NMOS Registry using the IS-04 Registration API, by including the Bearer Token in the API call.

Node to Registry Interactions

Example resource registration request:

POST /x-nmos/registration/resource HTTP/1.1
Host: registry.example.com
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJSUzUxMiIsInR5cCIgOiAiSl...
{
  "data": {
    ... etc. ...
  },
  "type": "node"
}

Example response:

HTTP/1.1 201 Created
Content-Type: application/json
{
  ... etc. ...
}

←Node to Authorization Server Interactions · Index↑ · Controller to Authorization Server Interactions→