Skip to main content
GET
/
rest
/
consultations
List consultations
curl --request GET \
  --url https://mcp.arlohealth.ai/rest/consultations \
  --header 'Authorization: Bearer <token>'
{
  "conversations": [
    {
      "id": "<string>",
      "status": "TRIAGING",
      "lastMessage": "<string>",
      "lastMessageTimestamp": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

OAuth 2.1 with PKCE

Query Parameters

limit
integer
default:10

Maximum number of results to return

Required range: x <= 50
status
string

Filter by status(es), comma-separated (e.g., "ACTIVE,CLOSED" or "TRIAGING")

Example:

"ACTIVE,MATCHING"

Response

List of consultations

conversations
object[]
total
integer