curl --request POST \
--url https://integration.getmateo.com/api/v1/format \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"phoneNumber": "<string>",
"countryCode": "DE"
}'
{
"phoneNumber": "<string>"
}
Format phone numbers to E.164 format with specified country codes
curl --request POST \
--url https://integration.getmateo.com/api/v1/format \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"phoneNumber": "<string>",
"countryCode": "DE"
}'
{
"phoneNumber": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successfully formatted phone numbers
The response is of type object
.