Action

Update an action's knowledge

PATCH
/api/v1/action/knowledge/{actionId}
/api/v1/action/knowledge/{actionId}

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The list of documents accessible by the action

documentIdsarray | null

Path Parameters

actionId
Required
string

The ID of the action to update

curl -X PATCH "https://example.com/api/v1/action/knowledge/string" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "documentIds": null
  }'

OK