Nodes
Replace relationships between a Node and linked Registrations
Replace all existing linked registrations for a node with a new set of linked registrations.
Permissions
- The authenticated user must have write permissions on the node.
Request Body - A data array containing the new list of registration resource identifier objects (type and id).
Returns - The updated list of linked registrations for the node.
patch/nodes/{node_id}/relationships/linked_registrations/
Path parameters
node_idstring required
The unique identifier of the node.
Request body
Example request
{
"data": [
{
"type": "registrations",
"id": "abc123"
},
{
"type": "registrations",
"id": "def456"
}
]
}Response
Successfully replaced linked registrations for the node.