GET
/
v2
/
verification
/
management
/
sender-id
Get sender IDs list
curl --request GET \
  --url https://api.prelude.dev/v2/verification/management/sender-id \
  --header 'Authorization: Bearer <token>'
[
  {
    "value": "<string>",
    "status": "approved"
  }
]

Authorizations

Authorization
string
header
required

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

Response

OK

A list of Sender ID.

value
string

Value that will be presented as Sender ID

status
enum<string>

It indicates the status of the sender ID. Possible values are:

  • approved - The sender ID is approved.
  • pending - The sender ID is pending.
  • rejected - The sender ID is rejected.
Available options:
approved,
pending,
rejected