Table of Contents

Class CallResponse

Namespace
Vonage.Voice
Assembly
Vonage.dll

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

string

Direction

The direction of the call: "outbound" or "inbound".

[JsonProperty("direction")]
public string Direction { get; set; }

Property Value

string

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

string

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; }

Property Value

string