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?appid='
[
  {
    "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-01T00:00:00.000Z"

to
string<date>
required

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

Example:

"2022-01-31T00:00:00.000Z"

Response

A list of 2FA Verification session

created_at
string<date-time>

Timestamp when the 2FA Verification was created

Example:

"2022-02-16T13:41:38.000Z"

session_id
string

Unique identifier of the 2FA Verification

Example:

"2953d4308f2e11ecb75fcdafd6d2d687"

phone_number
string

Destination phone number for the 2FA Verification

Example:

"447919433768"

destination_country
string

The phone number country of origin

Example:

"GB"

status
string

Status of the 2FA Verification

Example:

"verified"

charge
string

Charge for the 2FA Verification

Example:

"0.01"

service_id
string

Unique identifier of the Wavix 2FA Service

Example:

"7204a030201211ee9fb47d093f2f127c"

service_name
string

Name of the Wavix 2FA Service

Example:

"Wavix 2FA Service"

Example:
[
{
"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"
}
]