Skip to main content
GET
/
two-fa
/
service
/
{service_uuid}
/
sessions
List Wavix 2FA Verifications
curl --request GET \
  --url https://api.wavix.com/v1/two-fa/service/{service_uuid}/sessions
[
  {
    "created_at": "2022-02-16T13:41:38.000Z",
    "session_id": "2953d4308f2e11ecb75fcdafd6d2d687",
    "phone_number": "447919433768",
    "destination_country": "GB",
    "status": "verified",
    "charge": "0.01",
    "service_id": "7204a030201211ee9fb47d093f2f127c",
    "service_name": "Wavix 2FA Service"
  },
  {
    "created_at": "2022-02-16T13:41:38.000Z",
    "session_id": "8753d4308f2e11ecb75fcdafd6d2d690",
    "phone_number": "447919433768",
    "destination_country": "GB",
    "status": "pending",
    "charge": "0.01",
    "service_id": "7204a030201211ee9fb47d093f2f127c",
    "service_name": "Wavix 2FA Service"
  }
]

Authorizations

appid
string
query
required

An API key to authorize your request

Path Parameters

service_uuid
string
required

Wavix 2FA Service ID

Example:

"7204a030201211ee9fb47d093f2f127c"

Query Parameters

from
string<date>
required

Start date of your search time range, in yyyy-mm-dd format

Example:

"2022-01-01"

to
string<date>
required

End date of your search time range, in yyyy-mm-dd format

Example:

"2022-01-31"

Response

The response is of type any[].

I