Action

Get a completion from a action

POST
/api/v1/action/completion/{actionId}
/api/v1/action/completion/{actionId}

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The authorization of the action

chat_idstring | null

user_idstring | null

user_display_namestring | null

messagestring | null

returnJsonboolean | null

Path Parameters

actionId
Required
string

The ID of the action

curl -X POST "https://example.com/api/v1/action/completion/string" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "chat_id": null,
    "user_id": null,
    "user_display_name": null,
    "message": null,
    "returnJson": null
  }'

OK