curl --request POST \
--url https://app.famulor.io/api/v1/phone-numbers/verifications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"country": "<string>",
"email": "jsmith@example.com",
"prefix": "<string>",
"end_user_attributes": {},
"supporting_documents": [
{}
],
"attachments": [
{
"field": "<string>",
"content_base64": "<string>",
"filename": "<string>",
"content_type": "<string>"
}
]
}
'import requests
url = "https://app.famulor.io/api/v1/phone-numbers/verifications"
payload = {
"country": "<string>",
"email": "jsmith@example.com",
"prefix": "<string>",
"end_user_attributes": {},
"supporting_documents": [{}],
"attachments": [
{
"field": "<string>",
"content_base64": "<string>",
"filename": "<string>",
"content_type": "<string>"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
country: '<string>',
email: 'jsmith@example.com',
prefix: '<string>',
end_user_attributes: {},
supporting_documents: [{}],
attachments: [
{
field: '<string>',
content_base64: '<string>',
filename: '<string>',
content_type: '<string>'
}
]
})
};
fetch('https://app.famulor.io/api/v1/phone-numbers/verifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.famulor.io/api/v1/phone-numbers/verifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'country' => '<string>',
'email' => 'jsmith@example.com',
'prefix' => '<string>',
'end_user_attributes' => [
],
'supporting_documents' => [
[
]
],
'attachments' => [
[
'field' => '<string>',
'content_base64' => '<string>',
'filename' => '<string>',
'content_type' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.famulor.io/api/v1/phone-numbers/verifications"
payload := strings.NewReader("{\n \"country\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"prefix\": \"<string>\",\n \"end_user_attributes\": {},\n \"supporting_documents\": [\n {}\n ],\n \"attachments\": [\n {\n \"field\": \"<string>\",\n \"content_base64\": \"<string>\",\n \"filename\": \"<string>\",\n \"content_type\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.famulor.io/api/v1/phone-numbers/verifications")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"country\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"prefix\": \"<string>\",\n \"end_user_attributes\": {},\n \"supporting_documents\": [\n {}\n ],\n \"attachments\": [\n {\n \"field\": \"<string>\",\n \"content_base64\": \"<string>\",\n \"filename\": \"<string>\",\n \"content_type\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.famulor.io/api/v1/phone-numbers/verifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"country\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"prefix\": \"<string>\",\n \"end_user_attributes\": {},\n \"supporting_documents\": [\n {}\n ],\n \"attachments\": [\n {\n \"field\": \"<string>\",\n \"content_base64\": \"<string>\",\n \"filename\": \"<string>\",\n \"content_type\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"error": {
"code": "invalid_request",
"message": "\"to_number\" is required (E.164 format, e.g. +4930123456)."
}
}Submit regulatory number verification
Submit a regulatory bundle case (address + end-user attributes, optional base64 attachments). Requirements and document types are country-specific — discover eligible countries via GET /phone-numbers/verifications/catalog and load fields from the session regulations endpoint. Requires a user-scoped API key. Required scope: phone_numbers:write.
curl --request POST \
--url https://app.famulor.io/api/v1/phone-numbers/verifications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"country": "<string>",
"email": "jsmith@example.com",
"prefix": "<string>",
"end_user_attributes": {},
"supporting_documents": [
{}
],
"attachments": [
{
"field": "<string>",
"content_base64": "<string>",
"filename": "<string>",
"content_type": "<string>"
}
]
}
'import requests
url = "https://app.famulor.io/api/v1/phone-numbers/verifications"
payload = {
"country": "<string>",
"email": "jsmith@example.com",
"prefix": "<string>",
"end_user_attributes": {},
"supporting_documents": [{}],
"attachments": [
{
"field": "<string>",
"content_base64": "<string>",
"filename": "<string>",
"content_type": "<string>"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
country: '<string>',
email: 'jsmith@example.com',
prefix: '<string>',
end_user_attributes: {},
supporting_documents: [{}],
attachments: [
{
field: '<string>',
content_base64: '<string>',
filename: '<string>',
content_type: '<string>'
}
]
})
};
fetch('https://app.famulor.io/api/v1/phone-numbers/verifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.famulor.io/api/v1/phone-numbers/verifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'country' => '<string>',
'email' => 'jsmith@example.com',
'prefix' => '<string>',
'end_user_attributes' => [
],
'supporting_documents' => [
[
]
],
'attachments' => [
[
'field' => '<string>',
'content_base64' => '<string>',
'filename' => '<string>',
'content_type' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.famulor.io/api/v1/phone-numbers/verifications"
payload := strings.NewReader("{\n \"country\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"prefix\": \"<string>\",\n \"end_user_attributes\": {},\n \"supporting_documents\": [\n {}\n ],\n \"attachments\": [\n {\n \"field\": \"<string>\",\n \"content_base64\": \"<string>\",\n \"filename\": \"<string>\",\n \"content_type\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.famulor.io/api/v1/phone-numbers/verifications")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"country\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"prefix\": \"<string>\",\n \"end_user_attributes\": {},\n \"supporting_documents\": [\n {}\n ],\n \"attachments\": [\n {\n \"field\": \"<string>\",\n \"content_base64\": \"<string>\",\n \"filename\": \"<string>\",\n \"content_type\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.famulor.io/api/v1/phone-numbers/verifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"country\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"prefix\": \"<string>\",\n \"end_user_attributes\": {},\n \"supporting_documents\": [\n {}\n ],\n \"attachments\": [\n {\n \"field\": \"<string>\",\n \"content_base64\": \"<string>\",\n \"filename\": \"<string>\",\n \"content_type\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"error": {
"code": "invalid_request",
"message": "\"to_number\" is required (E.164 format, e.g. +4930123456)."
}
}Authorizations
API key (fam_..., created under Settings → API Keys) or an OAuth 2.0 access token (fam_at_...). Keys can be restricted to scopes such as assistants:read, calls:write, campaigns:write, automations:read, dashboards:read, dashboards:write, leads:write, segments:write, loop:read, loop:write, phone_numbers:write, sip_trunks:write, knowledge:write, voices:read, billing:read, settings:write, platform:read, platform:write; a *:write scope implies the matching *:read. Automation and dashboard endpoints also accept the legacy calls:* scope. Keys without scope restrictions have full access.
Body
ISO-2
local, mobile, national individual, business Show child attributes
Show child attributes
Show child attributes
Show child attributes
Response
Verification case created / submitted