Skip to main content
POST
/
phone-numbers
cURL
curl --request POST \
  --url https://api.mesinalabs.com/v1/phone-numbers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "country": "<string>",
  "region": "<string>",
  "mesinaCode": "<string>",
  "priority": "low",
  "tags": [
    "<string>"
  ]
}'
{
  "id": "<string>",
  "number": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "mesinaCode": "<string>"
}

Authorizations

Authorization
string
header
required

El bearer token es generado por nosotros, y está disponible en tu dashboard

Body

application/json

Número de teléfono a comprar

country
string
required
region
string
required
mesinaCode
string

Código mesina para verificaciones extras

priority
enum<string>

Priority level of the resource

Available options:
low,
medium,
high
tags
string[]

Tags associated with the resource

Response

Número de teléfono comprado exitosamente

id
string
number
string
createdAt
string<date-time>
updatedAt
string<date-time>
mesinaCode
string

Código mesina para verificaciones extras

I