Organization Users Add/remove doc grants on a member (readers only for now)
PATCH
/control-plane/api/v1/v1/organization/{organization_id}/users/{user_id}/documentations

Authentication

API Key (BearerAuth)

  • Header: Authorization

Path Parameters

organization_idstringrequired

Organization ID


user_idstringrequired

Organization User ID (the org_users row id)


Request Body

Docs to add/remove

Required

addstring[]

removestring[]

Example:

{
  "add": [
    "string"
  ],
  "remove": [
    "string"
  ]
}

Responses

200
OK

Example:

{
  "key": "value"
}
400
Bad Request

Example:

{
  "key": "value"
}