Download OpenAPI specification:
This document is intended for SSG developers who need applications to interact with backend services and data. It explains basic concepts of SchoolStatus and the API itself. It also provides an overview of the different API supported functions.
This Quickstart will teach you how to do send and recieve text and calls using the Contact Channel API. In this Quickstart, you will learn how to:
You can find all this at Platform Wiki.
The Common Services API uses Bearer Token authentication for authorization of requests. These tokens need to be supplied - otherwise the API will return a 403 Forbidden error. For more details on all that, please refer to the Platform API Overview.
The Common Services API implements two objects, both of which are required for API Access: a Bearer Token and an API Key. A single bearer can have multiple API keys if desired.
There are two user levels for actions relating to API keys. Actions can be performed as an admin or user. Actions taken as an admin can be performed regardless of associated bearers. Non-admin actions can only be performed for the associated bearer token(s).
A list of all the API Keys that have been generated will be returned. Send the request with an empty body. Note that the token is not included in this list.
[- {
- "id": 0,
- "bearer_id": 0,
- "created_at": "string"
}
]
This generates an API Key as an administrators. You must have an existing API key in order to generate more API keys.
bearer_id required | number ID of the bearer to generate an API key for. |
{- "bearer_id": 0
}
{- "id": 0,
- "bearer_id": 0,
- "token": "string",
- "created_at": "string"
}
A list of all the API Keys that are associated with the current bearer will be returned. Send the request with an empty body. Note that the token is not included in this list.
[- {
- "id": 0,
- "bearer_id": 0,
- "created_at": "string"
}
]
Generating an API Key can be performed both by administrators and non-administrators, with the caveat that an existing API Key is necessary to generate it, and a non-administrator will only be to generate an API Key for the bearer that the API key belongs to. API Keys can also be revoked.
{- "id": 0,
- "bearer_id": 0,
- "token": "string",
- "created_at": "string"
}
It's possible to revoke an API Key with a DELETE request. Deleting keys via this endpoint, you will only be able to delete API Keys associated with the bearer you're using. To revoke the key, send a request with an empty body. Please note that deleting an API Key will delete it in our database - it simply won’t exist anymore to authenticate with.
id required | any |
{- "error": {
- "code": 0,
- "message": "string",
- "detail": "string"
}
}
Bearers can only be generated by someone with admin level API Access. If a user or application sends an outbound message, Common Services will process the message, send it out through our provider, and then receive webhook updates from the provider. Supplying this URL is required for the original application to receive updates regarding the message that was sent out.
Separately, if an inbound message comes in, this URL can also be used to send notifications to an application that a message has been received.
All of this fields are required for generating a bearer.
To generate a bearer, you must have admin level privileges. Make sure to hang onto the ID for the bearer - it will be necessary for generating an API Key. It may on occasion be necessary to get a list of bearers - this can again only be done at the administrator level.
bearer_name required | string Descriptive name for the bearer. Could be a person's name, application name, or a server name. |
bearer_type required | string Type of bearer. Can be Admin, Application, or User. These different types have different permission levels.
|
callback_url required | string Global End user API endpoint for sending messages or making calls. Please, send us a callback_url in your request if you want to override the default one. The order presedence is:
|
username required | string Username for basic auth for the callback URL |
password required | string Password for basic auth for the callback URL. |
{- "bearer_name": "Ron",
- "bearer_type": "User",
- "username": "RegCattermole",
- "password": "Scabbers80"
}
{- "bearer": {
- "id": "037",
- "bearer_name": "Ron",
- "bearer_type": "User",
- "created_at": "2023-12-06T22:45:37.607Z"
}
}
Updates the specified bearer by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
id required | any |
bearer_name required | string Descriptive name for the bearer. Could be a person's name, application name, or a server name. |
bearer_type required | string Type of bearer. Can be Admin, Application, or User. These different types have different permission levels.
|
callback_url required | string Global End user API endpoint for sending messages or making calls. Please, send us a callback_url in your request if you want to override the default one. The order presedence is:
|
username required | string Username for basic auth for the callback URL |
password required | string Password for basic auth for the callback URL. |
{- "bearer_name": "string",
- "bearer_type": "string",
- "callback_url": "string",
- "username": "string",
- "password": "string"
}
{- "error": {
- "code": 0,
- "message": "string",
- "detail": "string"
}
}
To generate a messaging service, you must have admin level privileges. Make sure to hang onto the ID for the bearer - it will be necessary for generating an API Key. It may on occasion be necessary to get a list of bearers - this can again only be done at the administrator level.
twilio_messaging_sid | string Messaging service sid provider. |
provider_messaging_sid required | string Messaging service sid provider. |
global_customer_id required | string global customer id value |
twilio_numbers required | object twilio numbers available |
{- "provider_messaging_sid": "string",
- "global_customer_id": "string",
- "twilio_numbers_attributes": "object with elements"
}
{- "id": 0,
- "name": "string",
- "twilio_messaging_sid": "string",
- "provider_messaging_sid": "string",
- "global_customer_id": "string",
- "uuid": "string",
- "provider_numbers": [ ]
}
id required | number database primary key | ||||||||
bearer_name required | string Descriptive name for the bearer. Could be a person's name, application name, or a server name. | ||||||||
bearer_type required | string Type of bearer. These different types have different permission levels.
| ||||||||
callback_url | string or null Global End user API endpoint for sending messages or making calls. Please, send us a callback_url in your request if you want to override the default one. The order presedence is:
| ||||||||
created_at | string |
{- "bearer_name": "Severus Snape",
}
{- "id": 0,
- "bearer_name": "string",
- "bearer_type": "string",
- "callback_url": "string",
- "created_at": "string"
}
The Conference Calls object represents a single attempt to create a call between two or more phones.
twilio_number required | string This number is going to be used to make all the invites and the Conference. |
moderator_number required | string Moderator number is the first one to get invited to the Call. |
client_conversation_id required | string This is an ID created by your system. The Common Services API will use this ID to describe the pairing between a school employee and one or more contacts. |
welcome_message | string Voice message that is going to be reproduced at the beginning of the Conference Call |
callback_url | string You can set a URL to receive webhooks when the status of a Conference Call changes. When you make a conference call and create a conversation for the first time, you're supplying us a callback URL. We save that callback URL to the conversation and then use it as a fallback the next time. If you don't provide us a callback_url, we use the one attached to the conversation. If you want to avoid unexpected behavior, we recommend you to always provide a callback_url when creating a conference call. |
participant_numbers required | Array of strings Set of phone numbers you want to invite to the Call. |
{- "twilio_number": "string",
- "moderator_number": "string",
- "client_conversation_id": "string",
- "welcome_message": "string",
- "callback_url": "string",
- "participant_numbers": [
- "string"
]
}
{- "id": 0,
- "uuid": "string",
- "client_conversation_id": "string",
- "internal_status": "string",
- "provider_status": "string",
- "created_at": "string",
- "updated_at": "string",
- "transcription": {
- "alternateFormats": {
- "webvtt": "string",
- "srt": "string",
- "formattedText": "string",
- "dfxp": "string"
}, - "words": [ ]
}, - "recording_duration": "string",
- "recording_url": "string",
- "error_code": "string",
- "error_description": "string",
- "conference_call": {
- "id": 0,
- "uuid": "string",
- "client_conversation_id": "string",
- "friendly_name": "string",
- "twilio_number": "string",
- "provider_number": "string",
- "moderator_number": "string",
- "participant_numbers": [ ],
- "welcome_message": "string",
- "created_at": "string",
- "updated_at": "string"
}
}
Retrieves the details of a conference call object that has previously been created. Supply the uuid
that was returned from your previous request, and Common Services will return the corresponding conference call information. The same information is returned when creating a conference call.
uuid required | any |
{- "id": 0,
- "uuid": "string",
- "client_conversation_id": "string",
- "friendly_name": "string",
- "conference_sid": "string",
- "internal_status": "string",
- "provider_status": "string",
- "twilio_number": "string",
- "provider_number": "string",
- "moderator_number": "string",
- "participant_numbers": [ ],
- "welcome_message": "string",
- "transcription": {
- "alternateFormats": {
- "webvtt": "string",
- "srt": "string",
- "formattedText": "string",
- "dfxp": "string"
}, - "words": [ ]
}, - "recording_duration": "string",
- "error_code": "string",
- "error_description": "string",
- "recording_url": "string",
- "created_at": "string",
- "updated_at": "string"
}
A conversation is a unique message thread that contains Participants and the Messages they have sent.
The Messages object represents an inbound or outbound message between a school entity and one or more guardians. You can create a message object via the REST API, and a message object is created when someone sends a message to a sender_number
. Use it to send or schedule a new message, to retrieve a specific message, cancle a scheduled message, or retrieve a list of messages.
Retrieves the details of a message object that has previously been created. Supply the unique message ID that was returned from your previous request, and Platform will return the corresponding message information. The same information is returned when creating a message.
uuid required | string The unique ID for this message. |
{- "id": 0,
- "sender_number": "string",
- "receiver_number": "string",
- "message_body": "string",
- "provider": "string",
- "message_type": "string",
- "provider_status": "string",
- "media_urls": [ ],
- "media_file_urls": [ ],
- "message_sid": "string",
- "message_uuid": "string",
- "client_conversation_id": "string",
- "internal_conversation_id": "string",
- "global_id": "string",
- "priority": "string"
}
This allows you to create a message for immediate delivery or schedule it to be sent later.
required | object Object containing data associated with the message. |
{- "message": {
- "sender_number": "string",
- "receiver_number": "string",
- "message_body": "string",
- "message_type": "sms",
- "messaging_service_sid": "string",
- "callback_url": "string",
- "language_code": "en-US",
- "client_conversation_id": "string",
- "global_id": "string",
- "global_customer_id": "string",
- "media_urls": [
- "string"
], - "send_at": "string",
- "priority": "string"
}
}
{- "id": 0,
- "sender_number": "string",
- "receiver_number": "string",
- "message_body": "string",
- "provider": "string",
- "message_type": "string",
- "provider_status": "string",
- "media_urls": [ ],
- "media_file_urls": [ ],
- "message_sid": "string",
- "message_uuid": "string",
- "client_conversation_id": "string",
- "internal_conversation_id": "string",
- "global_id": "string",
- "priority": "string"
}
Canclels a scheduled message immediately. Supply the unique message ID that was returned from your previous request, and Platform will cancle the scheduled message.
uuid required | any |
{- "error": {
- "code": 0,
- "message": "string",
- "detail": "string"
}
}
Returns a list of your messages filtered by the to
and from
numbers.
from required | string sender number |
to required | string receiver number |
{- "from": "string",
- "to": "string"
}
Generate a Twilio Access Token and Voice Grant for frontend calls.
moderator_id
, conversation_id
and a callback_url
with the client_call_id
.required | object Conversation Properties for generating a new twilio call token |
{- "conversation": "string"
}
{- "identity": "string",
- "token": "string"
}
Generates a TwiML response for frontend SDK calls.
To | string |
client_conversation_id | string |
global_id | string |
internal_conversation_id | string |
messaging_service_sid | string |
global_customer_id | string |
callback_url | string You can set a URL to receive webhooks when the status of an SDK call (D2P) changes. When you make a call using the SDK you can provide us a callback_url . If you don't provide a callback_url, we use the one attached to the conversation. If you want to avoid unexpected behavior, we recommend you to always provide a callback_url when creating an SDK call . |
{- "To": "string",
- "client_conversation_id": "string",
- "global_id": "string",
- "internal_conversation_id": "string",
- "messaging_service_sid": "string",
- "global_customer_id": "string",
- "callback_url": "string"
}
Returns the properties of the voicemail for id
id required | any |
{- "id": 0,
- "created_at": "string",
- "updated_at": "string",
- "internal_status": "string",
- "provider_status": "string",
- "participant_number": "string",
- "caller_id": "string",
- "provider_number": "string"
}
Generate a Twilio Access Token and Voice Grant for frontend calls.
moderator_id
.required | object Conversation Properties for generating a new twilio call token |
{- "conversation": {
- "moderator_id": "string"
}
}
{- "identity": "string",
- "token": "string"
}
Create an announcement message for immediate delivery.
This endpoint validates the parameters and queues the message for background delivery.
No database record is created during the request to reduce latency.
A successful response includes the client_announcement_id
and client_message_id
that you provided, that can be used with the callback_url
to track delivery status.
required | object |
{- "announcement": {
- "id": 0,
- "body": "string",
- "recipient_number": "string",
- "global_customer_id": "string",
- "client_announcement_id": "string",
- "client_message_id": "string",
- "callback_url": "string",
- "created_at": "string",
- "updated_at": "string"
}
}
{- "client_announcement_id": "string",
- "client_message_id": "string"
}
Returns a Call based on the UUID
.
This endpoint supports SDK Calls (D2P) or Conference Calls (P2P), you only have to be sure you provide a Call UUID
.
There are multiple ways we share the UUID
of a call with you:
UUID
is provided in the payload's root after creating one and also in each webhook you get back. UUID
is via webhooks.uuid required | any |
{- "id": 0,
- "uuid": "string",
- "client_conversation_id": "string",
- "welcome_message": "string",
- "callback_url": "string",
- "internal_status": "string",
- "provider_status": "string",
- "created_at": "string",
- "updated_at": "string",
- "call_sid": "string",
- "provider_number": "string",
- "participant_number": "string",
- "recording_duration": 0,
- "recording_url": "string",
- "transcription": {
- "alternateFormats": {
- "webvtt": "string",
- "srt": "string",
- "formattedText": "string",
- "dfxp": "string"
}, - "words": [ ]
}, - "failed_at": "string",
- "error_code": "string",
- "error_description": "string",
- "machine_detected": true
}
Updates a Call based on the UUID
.
This endpoint supports SDK Calls (D2P) or Conference Calls (P2P), you only have to be sure you provide a Call UUID
.
There are multiple ways we share the UUID
of a call with you:
UUID
is provided in the payload's root after creating one and also in each webhook you get back. UUID
is via webhooks.uuid required | any |
welcome_message | string or null The message played to the moderator or participants when they join the call |
callback_url | string or null Callback URL for status webhook status updates on this call |
{- "welcome_message": "string",
- "callback_url": "string"
}
{- "id": 0,
- "uuid": "string",
- "client_conversation_id": "string",
- "welcome_message": "string",
- "callback_url": "string",
- "internal_status": "string",
- "provider_status": "string",
- "created_at": "string",
- "updated_at": "string",
- "call_sid": "string",
- "provider_number": "string",
- "participant_number": "string",
- "recording_duration": 0,
- "recording_url": "string",
- "transcription": {
- "alternateFormats": {
- "webvtt": "string",
- "srt": "string",
- "formattedText": "string",
- "dfxp": "string"
}, - "words": [ ]
}, - "failed_at": "string",
- "error_code": "string",
- "error_description": "string",
- "machine_detected": true
}
Returns an expirable s3 recording url with an expiration of 12 hours by providing a Call UUID
.
When the recording url doesn't exist, you get an empty value.
There are multiple ways we share the UUID
of a call with you:
UUID
is provided in the payload's root after creating one and also in each webhook you get back. UUID
is via webhooks.uuid required | any |
{- "recording_url": "string"
}
conversation_id required | any |
Authorization | string |
required | object |
{- "participant": {
- "contact_number": "string"
}
}
conversation_id required | any |
Authorization | string |
required | object |
{- "participant": {
- "contact_number": "string"
}
}
conversation_id required | any |
Authorization | string |
required | object |
{- "participant": {
- "contact_number": "string"
}
}
Retrieves the details of all stored messaging services.
[- {
- "global_customer_id": "string",
- "id": 0,
- "provider_messaging_sid": "string",
- "twilio_messaging_sid": "string",
- "provider_numbers": [ ],
- "uuid": "string"
}
]
Creates a messaging service. This is a combination of a global customer ID, a twilio messaging service sid, and a bandwidth messaging sid
required | object |
{- "messaging_service": {
- "name": "string",
- "provider_messaging_sid": "string",
- "global_customer_id": "string"
}
}
{- "id": 0,
- "name": "string",
- "twilio_messaging_sid": "string",
- "provider_messaging_sid": "string",
- "global_customer_id": "string",
- "uuid": "string",
- "provider_numbers": [ ]
}
Retrieves a single messaging service using its uuid
uuid required | any |
{- "id": 0,
- "name": "string",
- "twilio_messaging_sid": "string",
- "provider_messaging_sid": "string",
- "global_customer_id": "string",
- "uuid": "string",
- "provider_numbers": [ ]
}
Updates a messaging service using its uuid
uuid required | any |
{- "id": 0,
- "name": "string",
- "twilio_messaging_sid": "string",
- "provider_messaging_sid": "string",
- "global_customer_id": "string",
- "uuid": "string",
- "provider_numbers": [ ]
}
Updates a messaging service using its uuid
uuid required | any |
{- "id": 0,
- "name": "string",
- "twilio_messaging_sid": "string",
- "provider_messaging_sid": "string",
- "global_customer_id": "string",
- "uuid": "string",
- "provider_numbers": [ ]
}
Retrieves the details of a messaging service using its provider messaging service sid
twilio_messaging_sid | string |
{- "id": 0,
- "name": "string",
- "twilio_messaging_sid": "string",
- "provider_messaging_sid": "string",
- "global_customer_id": "string",
- "uuid": "string",
- "provider_numbers": [ ]
}
Retrieves the details of a messaging service using its provider messaging service sid
provider_messaging_sid | string |
{- "id": 0,
- "name": "string",
- "twilio_messaging_sid": "string",
- "provider_messaging_sid": "string",
- "global_customer_id": "string",
- "uuid": "string",
- "provider_numbers": [ ]
}
Retrieves the details of a messaging service using its global customer id
global_customer_id | string |
{- "id": 0,
- "name": "string",
- "twilio_messaging_sid": "string",
- "provider_messaging_sid": "string",
- "global_customer_id": "string",
- "uuid": "string",
- "provider_numbers": [ ]
}
Retrieves the details of a messaging service using its' name
name | string |
{- "id": 0,
- "name": "string",
- "twilio_messaging_sid": "string",
- "provider_messaging_sid": "string",
- "global_customer_id": "string",
- "uuid": "string",
- "provider_numbers": [ ]
}
required | object |
{- "participant": {
- "video_call_id": 0,
- "shunkan_ido_session_key": "string",
- "username": "string",
- "is_host": true
}
}
{- "shunkan_ido_user_key": "string",
- "shunkan_ido_session_key": "string",
- "is_host": true,
- "token_signature": "string",
- "username": "string",
- "provider_id": "string",
- "bearer_id": 0,
- "video_call_id": 0,
- "session_name": "string",
- "created_at": "string",
- "updated_at": "string"
}
A Creates a Video Call in our database, then generates the host participant, including a token for that host participant
object |
{- "video_call": {
- "callback_url": "string",
- "session_name": "string",
- "username": "string",
- "client_conversation_id": "string",
- "internal_conversation_id": "string",
- "global_id": "string",
- "global_customer_id": "string",
- "maximum_call_length": 0
}
}
{- "shunkan_ido_session_key": "string",
- "session_name": "string",
- "internal_status": "string",
- "provider_status": "string",
- "bearer_id": 0,
- "client_conversation_id": "string",
- "internal_conversation_id": "string",
- "global_id": "string",
- "provider_id": "string",
- "start_time": "string",
- "end_time": "string",
- "created_at": "string",
- "updated_at": "string",
- "host_token": "string",
- "host_username": "string",
- "maximum_call_length": 0
}
Retrieves a video call, as well as its participants and recordings, by session key.
session_key required | string The unique ID for this video call. |
{- "shunkan_ido_session_key": "string",
- "session_name": "string",
- "internal_status": "string",
- "provider_status": "string",
- "bearer_id": 0,
- "client_conversation_id": "string",
- "internal_conversation_id": "string",
- "global_id": "string",
- "provider_id": "string",
- "start_time": "string",
- "end_time": "string",
- "created_at": "string",
- "updated_at": "string",
- "end_at": "string",
- "host_token": "string",
- "host_username": "string",
- "maximum_call_length": 0,
- "video_call_recordings": [
- {
- "id": 0,
- "filename": "string",
- "internal_status": "string",
- "provider_status": "string",
- "transcript": {
- "alternateFormats": {
- "webvtt": "string",
- "srt": "string",
- "formattedText": "string",
- "dfxp": "string"
}, - "words": [ ]
}, - "recording_start": "string",
- "recording_end": "string",
- "download_url": "string",
- "created_at": "string",
- "updated_at": "string"
}
], - "video_call_participants": [
- {
- "shunkan_ido_user_key": "string",
- "shunkan_ido_session_key": "string",
- "is_host": true,
- "token_signature": "string",
- "username": "string",
- "provider_id": "string",
- "bearer_id": 0,
- "video_call_id": 0,
- "session_name": "string",
- "created_at": "string",
- "updated_at": "string"
}
]
}
This endpoint accepts webhooks from Zoom, which we use for video calls.
event_ts | number unix integer timestamp for when the event was sent. |
event | string event name froom zoom |
object |
{- "event_ts": 0,
- "event": "string",
- "payload": {
- "account_id": "string"
}
}
{- "plainToken": "string",
- "encryptedToken": "string"
}
This webhook is sent whenever an end-user opts out of communication from a given provider phone number.
id | number The internal ID for announcements_messages from postgres. |
global_customer_id | string or null The global customer id the end users have for each customer. |
recipient_number | string The number of the recipient who's receiving the message. |
provider_number | string The number associated to the customer. |
client_announcement_id | string or null A unique identifier for the announcement, as provided by the client system. |
client_message_id | string or null A unique identifier for the message, as provided by the client system. |
body | string The description of the message. |
callback_url | string or null The callback url to hit the end users applications. |
{- "id": 0,
- "global_customer_id": "string",
- "recipient_number": "string",
- "provider_number": "string",
- "client_announcement_id": "string",
- "client_message_id": "string",
- "body": "string",
- "callback_url": "string"
}
This webhook is to update announcements messages with Twilio information and hit end users applications to notify them.
id | number The internal ID for announcements_messages from postgres. |
global_customer_id | string or null The global customer id the end users have for each customer. |
recipient_number | string The number of the recipient who's receiving the message. |
provider_number | string The number associated to the customer. |
client_announcement_id | string or null A unique identifier for the announcement, as provided by the client system. |
client_message_id | string or null A unique identifier for the message, as provided by the client system. |
body | string The description of the message. |
callback_url | string or null The callback url to hit the end users applications. |
{- "id": 0,
- "global_customer_id": "string",
- "recipient_number": "string",
- "provider_number": "string",
- "client_announcement_id": "string",
- "client_message_id": "string",
- "body": "string",
- "callback_url": "string"
}
object payload including all the related information with the given event | |||||||||||||||
id | number primary key | ||||||||||||||
uuid required | string Global | ||||||||||||||
client_conversation_id | string The ID of the conversation in the client's system. | ||||||||||||||
internal_status | string or null Status as stored by Common Services API:
| ||||||||||||||
provider_status | string or null Status as reported by calling service provider (i.e. Twilio, Bandwidth).
| ||||||||||||||
created_at | string | ||||||||||||||
updated_at | string | ||||||||||||||
object or null Transcription information regarding the conversation in the call between parent and teacher. According to the Voicebase Docs transcript is provided in the following formats:['srt', 'dfxp', 'text', 'webvtt', 'formattedText']. If you are going to render this in your website, we recommend you to use the W3C standard WebVTT format. | |||||||||||||||
recording_duration | string or null Call duration | ||||||||||||||
recording_url | string or null Recording URL regarding the call conversation | ||||||||||||||
error_code | string or null Error code | ||||||||||||||
error_description | string or null Error Description | ||||||||||||||
required | object This conference object is not a Call object. |
{- "metadata": {
- "type": "string",
- "timestamp": "string"
}, - "id": 0,
- "uuid": "string",
- "client_conversation_id": "string",
- "internal_status": "string",
- "provider_status": "string",
- "created_at": "string",
- "updated_at": "string",
- "transcription": {
- "alternateFormats": {
- "webvtt": "string",
- "srt": "string",
- "formattedText": "string",
- "dfxp": "string"
}, - "words": [ ]
}, - "recording_duration": "string",
- "recording_url": "string",
- "error_code": "string",
- "error_description": "string",
- "conference_call": {
- "id": 0,
- "uuid": "string",
- "client_conversation_id": "string",
- "friendly_name": "string",
- "twilio_number": "string",
- "provider_number": "string",
- "moderator_number": "string",
- "participant_numbers": [ ],
- "welcome_message": "string",
- "created_at": "string",
- "updated_at": "string"
}
}
id | number primary key ID in the database | ||||||||||||||||||||
uuid | string uuid ID shared between applications | ||||||||||||||||||||
client_conversation_id | string The ID of the conversation in the client's system. | ||||||||||||||||||||
welcome_message | string or null The message played to the moderator or participants when they join the call | ||||||||||||||||||||
callback_url | string Callback URL for status webhook status updates on this call | ||||||||||||||||||||
internal_status | string or null Status as stored by Common Services API:
| ||||||||||||||||||||
provider_status | string or null Status as reported by calling service provider (i.e. Twilio, Bandwidth).
| ||||||||||||||||||||
created_at | string | ||||||||||||||||||||
updated_at | string The date when the call was last updated in ISO 8061 format. | ||||||||||||||||||||
call_sid | string or null The Call unique SID retrieved from the provider. | ||||||||||||||||||||
provider_number | string or null The number used by Shunkan Ido for Caller ID | ||||||||||||||||||||
participant_number | string or null The number being called | ||||||||||||||||||||
recording_duration | number or null Length of the call recording | ||||||||||||||||||||
recording_url | string or null AWS Expirable URL where the recording can be found. Link expires in 24 hours. | ||||||||||||||||||||
object or null Transcription information regarding the conversation in the call between parent and teacher. According to the Voicebase Docs transcript is provided in the following formats:['srt', 'dfxp', 'text', 'webvtt', 'formattedText']. If you are going to render this in your website, we recommend you to use the W3C standard WebVTT format. | |||||||||||||||||||||
failed_at | string or null The timestamp in case the call fails. | ||||||||||||||||||||
error_code | string or null The call status retrieved from the provider. | ||||||||||||||||||||
error_description | string or null The call status retrieved from the provider. | ||||||||||||||||||||
machine_detected | boolean A flag representing whether the recipient of this call is a machine or a person. |
{- "id": 0,
- "uuid": "string",
- "client_conversation_id": "string",
- "welcome_message": "string",
- "callback_url": "string",
- "internal_status": "string",
- "provider_status": "string",
- "created_at": "string",
- "updated_at": "string",
- "call_sid": "string",
- "provider_number": "string",
- "participant_number": "string",
- "recording_duration": 0,
- "recording_url": "string",
- "transcription": {
- "alternateFormats": {
- "webvtt": "string",
- "srt": "string",
- "formattedText": "string",
- "dfxp": "string"
}, - "words": [ ]
}, - "failed_at": "string",
- "error_code": "string",
- "error_description": "string",
- "machine_detected": true
}
This webhook is sent whenever a voicemail recording has been received from the third-party provider and saved to our database.
id | number Database ID |
created_at | string Timestamp for when the voicemail record is created |
updated_at | string Timestamp for the late time a voicemail was updated |
internal_status | string Shunkan Ido's internal status for this voicemail |
provider_status | string or null The provider's status for this voicemail (Ex. Twilio) |
participant_number | string The phone number of the end user (Ex. parent, contact, etc.) |
caller_id | string The phone number of the end user (Ex. parent, contact, etc.) |
provider_number | string The phone number of the SchoolStatus user provided by a provider (Ex. Twilio) |
object or null Transcription information regarding the conversation in the call between parent and teacher. According to the Voicebase Docs transcript is provided in the following formats:['srt', 'dfxp', 'text', 'webvtt', 'formattedText']. If you are going to render this in your website, we recommend you to use the W3C standard WebVTT format. | |
recording_duration | string or null Call duration |
recording_url | string or null Recording URL regarding the call conversation |
client_conversation_id | string The ID of the conversation in the client's system. |
call_sid | string or null The Call unique SID retrieved from the provider. |
uuid | string uuid ID shared between applications |
{- "id": 0,
- "created_at": "string",
- "updated_at": "string",
- "internal_status": "string",
- "provider_status": "string",
- "participant_number": "string",
- "caller_id": "string",
- "provider_number": "string",
- "transcription": {
- "alternateFormats": {
- "webvtt": "string",
- "srt": "string",
- "formattedText": "string",
- "dfxp": "string"
}, - "words": [ ]
}, - "recording_duration": "string",
- "recording_url": "string",
- "client_conversation_id": "string",
- "call_sid": "string",
- "uuid": "string"
}
This webhook is sent whenever a voicemail transcription has been received from the third-party provider and saved to our database.
id | number Database ID |
created_at | string Timestamp for when the voicemail record is created |
updated_at | string Timestamp for the late time a voicemail was updated |
internal_status | string Shunkan Ido's internal status for this voicemail |
provider_status | string or null The provider's status for this voicemail (Ex. Twilio) |
participant_number | string The phone number of the end user (Ex. parent, contact, etc.) |
caller_id | string The phone number of the end user (Ex. parent, contact, etc.) |
provider_number | string The phone number of the SchoolStatus user provided by a provider (Ex. Twilio) |
object or null Transcription information regarding the conversation in the call between parent and teacher. According to the Voicebase Docs transcript is provided in the following formats:['srt', 'dfxp', 'text', 'webvtt', 'formattedText']. If you are going to render this in your website, we recommend you to use the W3C standard WebVTT format. | |
recording_duration | string or null Call duration |
recording_url | string or null Recording URL regarding the call conversation |
client_conversation_id | string The ID of the conversation in the client's system. |
call_sid | string or null The Call unique SID retrieved from the provider. |
uuid | string uuid ID shared between applications |
{- "id": 0,
- "created_at": "string",
- "updated_at": "string",
- "internal_status": "string",
- "provider_status": "string",
- "participant_number": "string",
- "caller_id": "string",
- "provider_number": "string",
- "transcription": {
- "alternateFormats": {
- "webvtt": "string",
- "srt": "string",
- "formattedText": "string",
- "dfxp": "string"
}, - "words": [ ]
}, - "recording_duration": "string",
- "recording_url": "string",
- "client_conversation_id": "string",
- "call_sid": "string",
- "uuid": "string"
}
This webhook is sent whenever a voicemail has its status updated, usually when it fails.
id | number Database ID |
created_at | string Timestamp for when the voicemail record is created |
updated_at | string Timestamp for the late time a voicemail was updated |
internal_status | string Shunkan Ido's internal status for this voicemail |
provider_status | string or null The provider's status for this voicemail (Ex. Twilio) |
participant_number | string The phone number of the end user (Ex. parent, contact, etc.) |
caller_id | string The phone number of the end user (Ex. parent, contact, etc.) |
provider_number | string The phone number of the SchoolStatus user provided by a provider (Ex. Twilio) |
object or null Transcription information regarding the conversation in the call between parent and teacher. According to the Voicebase Docs transcript is provided in the following formats:['srt', 'dfxp', 'text', 'webvtt', 'formattedText']. If you are going to render this in your website, we recommend you to use the W3C standard WebVTT format. | |
recording_duration | string or null Call duration |
recording_url | string or null Recording URL regarding the call conversation |
client_conversation_id | string The ID of the conversation in the client's system. |
call_sid | string or null The Call unique SID retrieved from the provider. |
uuid | string uuid ID shared between applications |
{- "id": 0,
- "created_at": "string",
- "updated_at": "string",
- "internal_status": "string",
- "provider_status": "string",
- "participant_number": "string",
- "caller_id": "string",
- "provider_number": "string",
- "transcription": {
- "alternateFormats": {
- "webvtt": "string",
- "srt": "string",
- "formattedText": "string",
- "dfxp": "string"
}, - "words": [ ]
}, - "recording_duration": "string",
- "recording_url": "string",
- "client_conversation_id": "string",
- "call_sid": "string",
- "uuid": "string"
}
object payload including all the related information with the given event | |||||||||||||||||||
id | number The internal ID for messages from postgres. | ||||||||||||||||||
sender_number | string or null The number of the participant who's sending the message. | ||||||||||||||||||
receiver_number | string The number of the participant who's receiving the message. | ||||||||||||||||||
message_body | string The text of the message. | ||||||||||||||||||
provider | string or null The API provider we are using to deliver the SMS (twilio, bandwidth). | ||||||||||||||||||
message_type | string It could be mms If the body is longer than 160 characters or it has media_urls, otherwise sms. | ||||||||||||||||||
provider_status | string or null The status we received from the provider. | ||||||||||||||||||
media_urls | Array of arrays or null or null an Array of the media_urls you provided to the API. | ||||||||||||||||||
message_sid | string or null The unique message sid generated by the provider. | ||||||||||||||||||
message_uuid | string Unique ID generally created by Shunkan Ido as a Global Identifier | ||||||||||||||||||
client_conversation_id | string UUID parameter created by external system. | ||||||||||||||||||
phone_number_type | string It could be mobile, landline, fixedVoip, etc... | ||||||||||||||||||
internal_status | string Status of the message as recorded by the Common Services API.
| ||||||||||||||||||
error_code | string An error code we use to track errors. You can share this with the platform team for debugging.
When the error code comes from the provider you get this message in the error_description:
Twilio error codes reference: https://www.twilio.com/docs/api/errors | ||||||||||||||||||
error_description | string description of the error when it fails. | ||||||||||||||||||
sent_at | string The moment when the message gets sent. | ||||||||||||||||||
delivered_at | string The moment when the message gets delivered to the phone. | ||||||||||||||||||
enqueued_at | string The moment when the message was enqueued for processing. | ||||||||||||||||||
failed_at | string The moment when the message failed. | ||||||||||||||||||
priority | string priority options default|high |
{- "metadata": {
- "type": "string",
- "timestamp": "string"
}, - "id": 0,
- "sender_number": "string",
- "receiver_number": "string",
- "message_body": "string",
- "provider": "string",
- "message_type": "string",
- "provider_status": "string",
- "media_urls": [ ],
- "message_sid": "string",
- "message_uuid": "string",
- "client_conversation_id": "string",
- "phone_number_type": "string",
- "internal_status": "string",
- "error_code": "string",
- "error_description": "string",
- "sent_at": "string",
- "delivered_at": "string",
- "enqueued_at": "string",
- "failed_at": "string",
- "priority": "string"
}
object payload including all the related information with the given event | |||||||||||||||||||
id | number The internal ID for messages from postgres. | ||||||||||||||||||
sender_number | string or null The number of the participant who's sending the message. | ||||||||||||||||||
receiver_number | string The number of the participant who's receiving the message. | ||||||||||||||||||
message_body | string The text of the message. | ||||||||||||||||||
provider | string or null The API provider we are using to deliver the SMS (twilio, bandwidth). | ||||||||||||||||||
message_type | string It could be mms If the body is longer than 160 characters or it has media_urls, otherwise sms. | ||||||||||||||||||
provider_status | string or null The status we received from the provider. | ||||||||||||||||||
media_urls | Array of arrays or null or null an Array of the media_urls you provided to the API. | ||||||||||||||||||
message_sid | string or null The unique message sid generated by the provider. | ||||||||||||||||||
message_uuid | string Unique ID generally created by Shunkan Ido as a Global Identifier | ||||||||||||||||||
client_conversation_id | string UUID parameter created by external system. | ||||||||||||||||||
phone_number_type | string It could be mobile, landline, fixedVoip, etc... | ||||||||||||||||||
internal_status | string Status of the message as recorded by the Common Services API.
| ||||||||||||||||||
error_code | string An error code we use to track errors. You can share this with the platform team for debugging.
When the error code comes from the provider you get this message in the error_description:
Twilio error codes reference: https://www.twilio.com/docs/api/errors | ||||||||||||||||||
error_description | string description of the error when it fails. | ||||||||||||||||||
sent_at | string The moment when the message gets sent. | ||||||||||||||||||
delivered_at | string The moment when the message gets delivered to the phone. | ||||||||||||||||||
enqueued_at | string The moment when the message was enqueued for processing. | ||||||||||||||||||
failed_at | string The moment when the message failed. | ||||||||||||||||||
priority | string priority options default|high |
{- "metadata": {
- "type": "string",
- "timestamp": "string"
}, - "id": 0,
- "sender_number": "string",
- "receiver_number": "string",
- "message_body": "string",
- "provider": "string",
- "message_type": "string",
- "provider_status": "string",
- "media_urls": [ ],
- "message_sid": "string",
- "message_uuid": "string",
- "client_conversation_id": "string",
- "phone_number_type": "string",
- "internal_status": "string",
- "error_code": "string",
- "error_description": "string",
- "sent_at": "string",
- "delivered_at": "string",
- "enqueued_at": "string",
- "failed_at": "string",
- "priority": "string"
}
object payload including all the related information with the given event | |||||||||||||||||||
id | number The internal ID for messages from postgres. | ||||||||||||||||||
sender_number | string or null The number of the participant who's sending the message. | ||||||||||||||||||
receiver_number | string The number of the participant who's receiving the message. | ||||||||||||||||||
message_body | string The text of the message. | ||||||||||||||||||
provider | string or null The API provider we are using to deliver the SMS (twilio, bandwidth). | ||||||||||||||||||
message_type | string It could be mms If the body is longer than 160 characters or it has media_urls, otherwise sms. | ||||||||||||||||||
provider_status | string or null The status we received from the provider. | ||||||||||||||||||
media_urls | Array of arrays or null or null an Array of the media_urls you provided to the API. | ||||||||||||||||||
message_sid | string or null The unique message sid generated by the provider. | ||||||||||||||||||
message_uuid | string Unique ID generally created by Shunkan Ido as a Global Identifier | ||||||||||||||||||
client_conversation_id | string UUID parameter created by external system. | ||||||||||||||||||
phone_number_type | string It could be mobile, landline, fixedVoip, etc... | ||||||||||||||||||
internal_status | string Status of the message as recorded by the Common Services API.
| ||||||||||||||||||
error_code | string An error code we use to track errors. You can share this with the platform team for debugging.
When the error code comes from the provider you get this message in the error_description:
Twilio error codes reference: https://www.twilio.com/docs/api/errors | ||||||||||||||||||
error_description | string description of the error when it fails. | ||||||||||||||||||
sent_at | string The moment when the message gets sent. | ||||||||||||||||||
delivered_at | string The moment when the message gets delivered to the phone. | ||||||||||||||||||
enqueued_at | string The moment when the message was enqueued for processing. | ||||||||||||||||||
failed_at | string The moment when the message failed. | ||||||||||||||||||
priority | string priority options default|high |
{- "metadata": {
- "type": "string",
- "timestamp": "string"
}, - "id": 0,
- "sender_number": "string",
- "receiver_number": "string",
- "message_body": "string",
- "provider": "string",
- "message_type": "string",
- "provider_status": "string",
- "media_urls": [ ],
- "message_sid": "string",
- "message_uuid": "string",
- "client_conversation_id": "string",
- "phone_number_type": "string",
- "internal_status": "string",
- "error_code": "string",
- "error_description": "string",
- "sent_at": "string",
- "delivered_at": "string",
- "enqueued_at": "string",
- "failed_at": "string",
- "priority": "string"
}
This webhook is sent whenever an end-user opts out of communication from a given provider phone number.
object payload including all the related information with the given event | |||||||||||||||||||
id | number The internal ID for messages from postgres. | ||||||||||||||||||
sender_number | string or null The number of the participant who's sending the message. | ||||||||||||||||||
receiver_number | string The number of the participant who's receiving the message. | ||||||||||||||||||
message_body | string The text of the message. | ||||||||||||||||||
provider | string or null The API provider we are using to deliver the SMS (twilio, bandwidth). | ||||||||||||||||||
message_type | string It could be mms If the body is longer than 160 characters or it has media_urls, otherwise sms. | ||||||||||||||||||
provider_status | string or null The status we received from the provider. | ||||||||||||||||||
media_urls | Array of arrays or null or null an Array of the media_urls you provided to the API. | ||||||||||||||||||
message_sid | string or null The unique message sid generated by the provider. | ||||||||||||||||||
message_uuid | string Unique ID generally created by Shunkan Ido as a Global Identifier | ||||||||||||||||||
client_conversation_id | string UUID parameter created by external system. | ||||||||||||||||||
phone_number_type | string It could be mobile, landline, fixedVoip, etc... | ||||||||||||||||||
internal_status | string Status of the message as recorded by the Common Services API.
| ||||||||||||||||||
error_code | string An error code we use to track errors. You can share this with the platform team for debugging.
When the error code comes from the provider you get this message in the error_description:
Twilio error codes reference: https://www.twilio.com/docs/api/errors | ||||||||||||||||||
error_description | string description of the error when it fails. | ||||||||||||||||||
sent_at | string The moment when the message gets sent. | ||||||||||||||||||
delivered_at | string The moment when the message gets delivered to the phone. | ||||||||||||||||||
enqueued_at | string The moment when the message was enqueued for processing. | ||||||||||||||||||
failed_at | string The moment when the message failed. | ||||||||||||||||||
priority | string priority options default|high |
{- "metadata": {
- "type": "string",
- "timestamp": "string"
}, - "id": 0,
- "sender_number": "string",
- "receiver_number": "string",
- "message_body": "string",
- "provider": "string",
- "message_type": "string",
- "provider_status": "string",
- "media_urls": [ ],
- "message_sid": "string",
- "message_uuid": "string",
- "client_conversation_id": "string",
- "phone_number_type": "string",
- "internal_status": "string",
- "error_code": "string",
- "error_description": "string",
- "sent_at": "string",
- "delivered_at": "string",
- "enqueued_at": "string",
- "failed_at": "string",
- "priority": "string"
}
Authorization | string |
object payload including all the related information with the given event | |||||||||||||||||||
id | number The internal ID for messages from postgres. | ||||||||||||||||||
sender_number | string or null The number of the participant who's sending the message. | ||||||||||||||||||
receiver_number | string The number of the participant who's receiving the message. | ||||||||||||||||||
message_body | string The text of the message. | ||||||||||||||||||
provider | string or null The API provider we are using to deliver the SMS (twilio, bandwidth). | ||||||||||||||||||
message_type | string It could be mms If the body is longer than 160 characters or it has media_urls, otherwise sms. | ||||||||||||||||||
provider_status | string or null The status we received from the provider. | ||||||||||||||||||
media_urls | Array of arrays or null or null an Array of the media_urls you provided to the API. | ||||||||||||||||||
message_sid | string or null The unique message sid generated by the provider. | ||||||||||||||||||
message_uuid | string Unique ID generally created by Shunkan Ido as a Global Identifier | ||||||||||||||||||
client_conversation_id | string UUID parameter created by external system. | ||||||||||||||||||
phone_number_type | string It could be mobile, landline, fixedVoip, etc... | ||||||||||||||||||
internal_status | string Status of the message as recorded by the Common Services API.
| ||||||||||||||||||
error_code | string An error code we use to track errors. You can share this with the platform team for debugging.
When the error code comes from the provider you get this message in the error_description:
Twilio error codes reference: https://www.twilio.com/docs/api/errors | ||||||||||||||||||
error_description | string description of the error when it fails. | ||||||||||||||||||
sent_at | string The moment when the message gets sent. | ||||||||||||||||||
delivered_at | string The moment when the message gets delivered to the phone. | ||||||||||||||||||
enqueued_at | string The moment when the message was enqueued for processing. | ||||||||||||||||||
failed_at | string The moment when the message failed. | ||||||||||||||||||
priority | string priority options default|high |
{- "metadata": {
- "type": "string",
- "timestamp": "string"
}, - "id": 0,
- "sender_number": "string",
- "receiver_number": "string",
- "message_body": "string",
- "provider": "string",
- "message_type": "string",
- "provider_status": "string",
- "media_urls": [ ],
- "message_sid": "string",
- "message_uuid": "string",
- "client_conversation_id": "string",
- "phone_number_type": "string",
- "internal_status": "string",
- "error_code": "string",
- "error_description": "string",
- "sent_at": "string",
- "delivered_at": "string",
- "enqueued_at": "string",
- "failed_at": "string",
- "priority": "string"
}
id | number Database ID in Shunkan Ido for the Video Call |
shunkan_ido_session_key | string A Shunkan Ido Generated UUID that will be used for tracking Zoom calls. |
session_name | string The name of the video call session. Supplied by the end user. |
internal_status | string Call Status as stored by Shunkan Ido |
provider_status | string or null Call Status as provided by the provider. |
bearer_id | number foreign key for the bearer linked to the video call |
client_conversation_id | string String parameter supplied by the user to find/create a conversation. |
internal_conversation_id | string UUID parameter generally created by Shunkan Ido. This is a usable identifier for a conversation. global_id is preferable to this parameter for requests. |
global_id | string UUID parameter generally created by Shunkan Ido. This is a usable identifier for a conversation. |
provider_id | string or null String parameter provided by the video call provider to identify the call. |
maximum_call_length | number The maximum length of the call in minutes. Valid call lengths are from 0 to 120 minutes. If not supplied, a default of 60 minutes will be applied. When the limit is reached the call will automatically end. |
start_time | string or null String parameter that supplies the start time of the call. Provided by the provider, not by Shunkan Ido, so may not be immediately available. In ISO8601 format. |
end_time | string or null String parameter that supplies the end time of the call. Provided by the provider, not by Shunkan Ido, so may not be immediately available. In ISO8601 format. |
end_at | string or null The time that the call will automatically end if not manually ended prior to that time in ISO8601 format. At this time, the call will end and all participants will be removed from the call. |
created_at | string Time that that the call was created in Shunkan Ido's database. In ISO8601 Format. |
updated_at | string Time that that the call was last updated in Shunkan Ido's database. In ISO8601 Format. |
host_username | string Username of the host of the call, generally the person starting the call. |
Array of objects recordings associated with the video call |
{- "id": 0,
- "shunkan_ido_session_key": "string",
- "session_name": "string",
- "internal_status": "string",
- "provider_status": "string",
- "bearer_id": 0,
- "client_conversation_id": "string",
- "internal_conversation_id": "string",
- "global_id": "string",
- "provider_id": "string",
- "maximum_call_length": 0,
- "start_time": "string",
- "end_time": "string",
- "end_at": "string",
- "created_at": "string",
- "updated_at": "string",
- "host_username": "string",
- "video_call_recordings": [
- {
- "id": 0,
- "filename": "string",
- "internal_status": "string",
- "provider_status": "string",
- "transcript": {
- "alternateFormats": {
- "webvtt": "string",
- "srt": "string",
- "formattedText": "string",
- "dfxp": "string"
}, - "words": [ ]
}, - "recording_start": "string",
- "recording_end": "string",
- "download_url": "string",
- "created_at": "string",
- "updated_at": "string"
}
]
}