Skip to main content
GET
/
rest
/
consultations
/
{id}
Get consultation status
curl --request GET \
  --url https://mcp.arlohealth.ai/rest/consultations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "TRIAGING",
  "statusDescription": "<string>",
  "messages": [
    {
      "id": "<string>",
      "type": "text",
      "content": "<string>",
      "sender": "user",
      "timestamp": "2023-11-07T05:31:56Z",
      "senderId": "<string>"
    }
  ],
  "paymentGate": {
    "consultationSummary": "<string>",
    "ctaText": "<string>",
    "gateType": "NONE",
    "isLoading": true,
    "paymentType": "pay_per_use"
  },
  "nextSteps": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth 2.1 with PKCE

Path Parameters

id
string
required

Consultation ID

Query Parameters

includeMessages
boolean
default:true

Whether to include message history

Response

Consultation details

status
enum<string>
  • TRIAGING: AI is gathering information
  • PAYMENT_REQUIRED: Triage complete, awaiting payment
  • MATCHING: Being matched with provider
  • ACTIVE: Connected with provider
  • CLOSED: Consultation completed
  • EMERGENCY: Urgent care advised
  • CANCELED: User canceled
  • NOT_STARTED: Not yet started
Available options:
TRIAGING,
PAYMENT_REQUIRED,
MATCHING,
ACTIVE,
CLOSED,
EMERGENCY,
CANCELED,
NOT_STARTED
statusDescription
string
messages
object[]
paymentGate
object

Payment gate information when triage is complete

nextSteps
string