Skip to main content
GET
/
two-fa
/
session
/
{session_uuid}
/
events
List Wavix 2FA Verification events
curl --request GET \
  --url https://api.wavix.com/v1/two-fa/session/{session_uuid}/events
[
  {
    "created_at": "2022-02-16T13:41:38.000Z",
    "event": "Number lookup",
    "status": "success",
    "charge": "0.005",
    "error": null
  },
  {
    "created_at": "2022-02-16T13:41:38.000Z",
    "event": "Code sent via SMS",
    "status": "success",
    "charge": "0.005",
    "error": null
  }
]

Authorizations

appid
string
query
required

An API key to authorize your request

Path Parameters

session_uuid
string
required

Wavix 2FA Verification ID

Example:

"8753d4308f2e11ecb75fcdafd6d2d690"

Response

created_at
string<date-time>
required

Date and time of the event

Example:

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

event
string
required

Human readable event description. Can contain on of the following values: Number lookup for the Wavix platform checked if the destination phone number is valid. You’ll see the event only when the Number validation option is activated for your 2FA Service; Code sent via SMS indicates a code was sent via an SMS; Code sent via voice indicates a code was sent via a voice call; Verification indicates the code verification attempt

Example:

"Code sent via SMS"

status
string
required

Status of an action associated with the event. Can be either success, failed, or pending.

Example:

"success"

charge
string
required

Cost of an operation associated with the event, in USD

Example:

"0.005"

error
string | null
required

Error description, if any

I