curl --request PUT \
--url https://api-dev.narrative.io/data-planes/{data_plane_id}/collaborators \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"participants": {},
"manage_compute_pools": {}
}
'Overwrites the entire collaborators object on the data plane, setting both participants (who may
use the data plane) and manage_compute_pools (which companies may create / edit / archive compute
pools on it). Mirrors the whole-object PUT pattern used by attributes.
The granular per-company PUT/DELETE /data-planes/{data_plane_id}/collaborators/{collaborator_company_id}
endpoints continue to work for incremental mutation of participants; this endpoint is the only way
to set manage_compute_pools.
curl --request PUT \
--url https://api-dev.narrative.io/data-planes/{data_plane_id}/collaborators \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"participants": {},
"manage_compute_pools": {}
}
'Documentation Index
Fetch the complete documentation index at: https://docs.narrative.io/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Collaborators replaced
Was this page helpful?