GET
/
training
curl --request GET \
  --url https://api.open.cx/training \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "organization_id": "<string>",
    "question": "<string>",
    "answer": "<string>",
    "category": "<string>",
    "is_draft": false,
    "accepted_by": 123,
    "draft_payload": "<any>",
    "learned_from_session_id": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Returns all custom trainings

The response is of type object[].