Skip to content

Latest commit

 

History

History
25 lines (12 loc) · 1004 Bytes

CallStatus.md

File metadata and controls

25 lines (12 loc) · 1004 Bytes

CallStatus

  • queued – Call is ready and waiting in line before going out. * ringing – Call is currently ringing. * inProgress – Call was answered and is currently in progress. * canceled – Call was hung up while it was queued or ringing. * completed – Call was answered and has ended normally. * busy – Caller received a busy signal. * failed – Call could not be completed as dialed, most likely because the phone number was non-existent. * noAnswer – Call ended without being answered.

Enum

  • QUEUED (value: 'queued')

  • RINGING (value: 'ringing')

  • INPROGRESS (value: 'inProgress')

  • CANCELED (value: 'canceled')

  • COMPLETED (value: 'completed')

  • FAILED (value: 'failed')

  • BUSY (value: 'busy')

  • NOANSWER (value: 'noAnswer')

[Back to Model list] [Back to API list] [Back to README]