Class CallResponse
Represents the response from creating an outbound call via the Voice API.
public class CallResponse
- Inheritance
-
CallResponse
- Inherited Members
Properties
ConversationUuid
The unique identifier for the conversation this call is part of.
[JsonProperty("conversation_uuid")]
public string ConversationUuid { get; set; }
Property Value
Direction
The direction of the call: "outbound" or "inbound".
[JsonProperty("direction")]
public string Direction { get; set; }
Property Value
Status
The initial status of the call: started, ringing, answered, machine, timeout, completed, busy, cancelled, failed, rejected, or unanswered.
[JsonProperty("status")]
public string Status { get; set; }
Property Value
Uuid
The unique identifier (UUID) for this call leg. Use this in subsequent API calls to control the call.
[JsonProperty("uuid")]
public string Uuid { get; set; }