ECLINICALWORKS
Create Telephonic Encounter
Create telephonic encounter in eClinicalWorks
POSThttps://api.ontross.com/api/integrations/ecw/create-telephonic-encounter
Request Fields
input
object
requiredInput object.
input.patientId
string
requiredPatient id
input.providerId
string
requiredProvider id
input.assignedToId
string
requiredAssigned to id
input.reason
string
requiredReason
input.facilityId
string
requiredFacility id
input.encDate
string
Enc date
input.encTime
string
Enc time
input.assignedToLabel
string
Assigned to label
input.pos
integer
Pos
input.priority
integer
Priority
input.strictPrechecks
boolean
Strict prechecks
input.pd
string
Pd
auth_id
string
requiredAuth id
Output Fields
encounterId
string
Encounter id
created
boolean
Created
warnings
array
List of warnings.
Code
curl --request POST \
--url https://api.ontross.com/api/integrations/ecw/create-telephonic-encounter \
--header 'X-API-Key: REPLACE_KEY_VALUE' \
--header 'content-type: application/json' \
--data '{"input":{"patientId":"string_id","providerId":"string_id","assignedToId":"string_id","reason":"string","facilityId":"string_id","encDate":"2026-01-01","encTime":"09:00:00","assignedToLabel":"string","pos":0,"priority":0,"strictPrechecks":false,"pd":"string"},"auth_id":"auth_uuid_here"}'Request BODY
{
"input": {
"patientId": "string_id",
"providerId": "string_id",
"assignedToId": "string_id",
"reason": "string",
"facilityId": "string_id",
"encDate": "2026-01-01",
"encTime": "09:00:00",
"assignedToLabel": "string",
"pos": 0,
"priority": 0,
"strictPrechecks": false,
"pd": "string"
},
"auth_id": "auth_uuid_here"
}