Skip to main content
GET
/
api
/
agents
/
{id}
/
resolution-criteria
List resolution criteria for an agent
curl --request GET \
  --url http://localhost:3000/api/agents/{id}/resolution-criteria \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "agentId": "<string>",
    "label": "<string>",
    "description": "<string>",
    "position": 123,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Agent ID

Response

List of resolution criteria

id
string
required

Criterion ID

agentId
string
required

Agent ID

label
string
required

Label

description
string
required

Description

position
number
required

Display position

createdAt
string<date-time>
required

Created at

updatedAt
string<date-time>
required

Updated at