TODO: Resource-level docs
List all the verification attempts for a given Account.
Query parameters
-
Datetime filter used to query Verification Attempts created after this datetime. Given as GMT in RFC 2822 format.
-
Datetime filter used to query Verification Attempts created before this datetime. Given as GMT in RFC 2822 format.
-
Destination of a verification. It is phone number in E.164 format.
-
Filter used to query Verification Attempts sent to the specified destination country.
-
Filter used to query Verification Attempts by communication channel. Valid values are
SMSandCALLValues are
sms,call,email, orwhatsapp. -
Filter used to query Verification Attempts by verify service. Only attempts of the provided SID will be returned.
Minimum length is
34, maximum length is34. Format should match the following pattern:^VA[0-9a-fA-F]{32}$. -
Filter used to return all the Verification Attempts of a single verification. Only attempts of the provided verification SID will be returned.
Minimum length is
34, maximum length is34. Format should match the following pattern:^VE[0-9a-fA-F]{32}$. -
Filter used to query Verification Attempts by conversion status. Valid values are
UNCONVERTED, for attempts that were not converted, andCONVERTED, for attempts that were confirmed.Values are
convertedorunconverted. -
How many resources to return in each list page. The default is 50, and the maximum is 1000.
Minimum value is
1, maximum value is1000.
curl \
--request GET 'https://verify.twilio.com/v2/Attempts' \
--user "username:password"
{
"attempts": [
{
"account_sid": "string",
"channel": "sms",
"conversion_status": "converted",
"date_created": "2026-05-04T09:42:00Z",
"date_updated": "2026-05-04T09:42:00Z",
"service_sid": "string",
"sid": "string",
"url": "https://example.com",
"verification_sid": "string"
}
],
"meta": {
"first_page_url": "https://example.com",
"key": "string",
"next_page_url": "https://example.com",
"page": 42,
"page_size": 42,
"previous_page_url": "https://example.com",
"url": "https://example.com"
}
}