mutation( $callLogId: ID!, $handledByRemote: Boolean) { convertCallLogToAppointment( callLogId: $callLogId, handledByRemote: $handledByRemote ) { id # Add other fields you need }}{ "callLogId": "1", "handledByRemote": true}| Argument | Type | Description |
|---|---|---|
input | CallLogInput | Input data for call log operation |
mutation($input: CallLogInput) { createCallLog(input: $input) { id # Add other fields you need }}{ "input": {}}| Argument | Type | Description |
|---|---|---|
inputrequired | CallLogInput! | Input |
voiceCallIdrequired | ID! | ID of the voicecall |
mutation( $input: CallLogInput!, $voiceCallId: ID!) { createVoiceCallLog( input: $input, voiceCallId: $voiceCallId ) { id # Add other fields you need }}{ "input": {}, "voiceCallId": "1"}mutation($id: ID!) { deleteCallLog(id: $id) { id # Add other fields you need }}{ "id": "1"}Dismiss voice calls for a location
| Argument | Type | Description |
|---|---|---|
locationIdrequired | ID! | ID of the location |
mutation($locationId: ID!) { dismissVoiceCalls(locationId: $locationId) { id # Add other fields you need }}{ "locationId": "1"}mutation( $callLogId: ID!, $clientId: ID, $id: ID!, $patientId: ID) { linkCall( callLogId: $callLogId, clientId: $clientId, id: $id, patientId: $patientId ) { id # Add other fields you need }}{ "callLogId": "1", "clientId": "1", "id": "1", "patientId": "1"}mutation( $callLogId: ID, $id: ID!) { unlinkCall( callLogId: $callLogId, id: $id ) { id # Add other fields you need }}{ "callLogId": "1", "id": "1"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | Unique identifier |
inputrequired | CallLogInput! | Input |
mutation( $id: ID!, $input: CallLogInput!) { updateCallLog( id: $id, input: $input ) { id # Add other fields you need }}{ "id": "1", "input": {}}create or delete a subscription to dial pad call events
| Argument | Type | Description |
|---|---|---|
enableDialpadrequired | Boolean! | Enable phone dialpad functionality |
mutation($enableDialpad: Boolean!) { updateDialpadSubscription(enableDialpad: $enableDialpad) { id # Add other fields you need }}{ "enableDialpad": true}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | Unique identifier |
inputrequired | VoiceCallInput! | Input |
mutation( $id: ID!, $input: VoiceCallInput!) { updateVoiceCall( id: $id, input: $input ) { id # Add other fields you need }}{ "id": "1", "input": {}}