Table of Contents

Class VerifyControlRequest

Namespace
Vonage.Verify
Assembly
Vonage.dll

Represents a request to control an in-progress verification by cancelling it or triggering the next event.

public class VerifyControlRequest
Inheritance
VerifyControlRequest
Inherited Members

Properties

Cmd

The control command to execute. Must be either "cancel" to abort the verification, or "trigger_next_event" to immediately advance to the next delivery attempt. Cancellation is only available 30 seconds after the request started and before the second event has occurred.

[JsonProperty("cmd")]
public string Cmd { get; set; }

Property Value

string

RequestId

The unique identifier of the verification request to control. This is the RequestId received from VerifyRequestAsync(VerifyRequest, Credentials).

[JsonProperty("request_id")]
public string RequestId { get; set; }

Property Value

string