Node to Registry Interactions (IS-04)
(c) AMWA 2021, CC Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
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.

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. ...
}