Skip to main content
PATCH
/
api
/
v1
/
agents
/
{agent_id}
/
boards
/
{board_id}
Update Board Overrides
curl --request PATCH \
  --url https://api.example.com/api/v1/agents/{agent_id}/boards/{board_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "permission_overrides": {}
}
'
{
  "agent_id": "<string>",
  "board_id": "<string>",
  "granted_at": "2023-11-07T05:31:56Z",
  "granted_by": "<string>",
  "id": "<string>",
  "permission_overrides": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.oktolabs.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string
required
board_id
string
required

Body

application/json

Schema for updating board-level permission overrides.

permission_overrides
Permission Overrides · object

Response

Successful Response

Schema for agent-board grant.

agent_id
string
required
board_id
string
required
granted_at
string<date-time>
required
granted_by
string
required
id
string
required
permission_overrides
Permission Overrides · object
Last modified on May 8, 2026