Fetch a specific verification attempt

GET /v2/Attempts/{Sid}

TODO: Resource-level docs

Fetch a specific verification attempt.

Path parameters

  • Sid string Required

    The unique SID identifier of a Verification Attempt

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • account_sid string | null

      The SID of the Account that created the verification.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

    • channel string | null

      Communication channel used for the attempt.

      Values are sms, call, email, or whatsapp.

    • An object containing the channel specific information for an attempt.

    • conversion_status string | null

      Status of the conversion for the verification.

      Values are converted or unconverted.

    • date_created string(date-time) | null

      The date this Attempt was created

    • date_updated string(date-time) | null

      The date this Attempt was updated

    • An object containing the charge for this verification attempt.

    • service_sid string | null

      The SID of the verify service that generated this attempt.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^VA[0-9a-fA-F]{32}$.

    • sid string | null

      The SID that uniquely identifies the verification attempt.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^VL[0-9a-fA-F]{32}$.

    • url string(uri) | null
    • verification_sid string | null

      The SID of the verification that generated this attempt.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^VE[0-9a-fA-F]{32}$.

GET /v2/Attempts/{Sid}
curl \
 -X GET https://verify.twilio.com/v2/Attempts/{Sid} \
 --user "username:password"
Response examples (200)
{
  "account_sid": "string",
  "channel": "sms",
  "conversion_status": "converted",
  "date_created": "2023-05-04T09:42:00+00:00",
  "date_updated": "2023-05-04T09:42:00+00:00",
  "service_sid": "string",
  "sid": "string",
  "url": "https://example.com",
  "verification_sid": "string"
}