Skip to main content
GET
/
v2
/
verification
/
management
/
phone-numbers
/
{action}
Get phone numbers allow or block list
curl --request GET \
  --url https://api.prelude.dev/v2/verification/management/phone-numbers/{action} \
  --header 'Authorization: Bearer <token>'
{
  "phone_numbers": [
    {
      "phone_number": "+30123456789",
      "created_at": "2024-01-01T12:00:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

action
enum<string>
required

The action type - either "allow" or "block"

Available options:
allow,
block

Response

OK

phone_numbers
object[]
required

A list of phone numbers in the allow or block list.

I