Update account
curl --request PATCH \
--url https://api.beltic.com/v1/identity/accounts/{id} \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"data": {
"attributes": {
"external_id": "<string>",
"person": {
"name": {
"first": "<string>",
"middle": "<string>",
"last": "<string>"
},
"birth_date": "<string>"
},
"business": {
"legal_name": "<string>",
"registration_date": "<string>",
"shareholders": [
{
"name": "<string>",
"shareholder_type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"number_of_share": "<string>",
"percentage_of_share": 123
}
]
},
"address": {
"line1": "<string>",
"line2": "<string>",
"sublocality": "<string>",
"locality": "<string>",
"administrative_area": "<string>",
"postal_code": "<string>",
"country_code": "<string>"
},
"identity_numbers": [
{
"number": "<string>",
"issuing_country_code": "<string>",
"class": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"redacted_at": "<string>"
}
}
}
'import requests
url = "https://api.beltic.com/v1/identity/accounts/{id}"
payload = { "data": { "attributes": {
"external_id": "<string>",
"person": {
"name": {
"first": "<string>",
"middle": "<string>",
"last": "<string>"
},
"birth_date": "<string>"
},
"business": {
"legal_name": "<string>",
"registration_date": "<string>",
"shareholders": [
{
"name": "<string>",
"shareholder_type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"number_of_share": "<string>",
"percentage_of_share": 123
}
]
},
"address": {
"line1": "<string>",
"line2": "<string>",
"sublocality": "<string>",
"locality": "<string>",
"administrative_area": "<string>",
"postal_code": "<string>",
"country_code": "<string>"
},
"identity_numbers": [
{
"number": "<string>",
"issuing_country_code": "<string>",
"class": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"redacted_at": "<string>"
} } }
headers = {
"X-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
attributes: {
external_id: '<string>',
person: {
name: {first: '<string>', middle: '<string>', last: '<string>'},
birth_date: '<string>'
},
business: {
legal_name: '<string>',
registration_date: '<string>',
shareholders: [
{
name: '<string>',
shareholder_type: '<string>',
date_of_birth: '<string>',
id_type: '<string>',
id_number: '<string>',
number_of_share: '<string>',
percentage_of_share: 123
}
]
},
address: {
line1: '<string>',
line2: '<string>',
sublocality: '<string>',
locality: '<string>',
administrative_area: '<string>',
postal_code: '<string>',
country_code: '<string>'
},
identity_numbers: [
{
number: '<string>',
issuing_country_code: '<string>',
class: '<string>',
created_at: '<string>',
updated_at: '<string>'
}
],
redacted_at: '<string>'
}
}
})
};
fetch('https://api.beltic.com/v1/identity/accounts/{id}', 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://api.beltic.com/v1/identity/accounts/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'attributes' => [
'external_id' => '<string>',
'person' => [
'name' => [
'first' => '<string>',
'middle' => '<string>',
'last' => '<string>'
],
'birth_date' => '<string>'
],
'business' => [
'legal_name' => '<string>',
'registration_date' => '<string>',
'shareholders' => [
[
'name' => '<string>',
'shareholder_type' => '<string>',
'date_of_birth' => '<string>',
'id_type' => '<string>',
'id_number' => '<string>',
'number_of_share' => '<string>',
'percentage_of_share' => 123
]
]
],
'address' => [
'line1' => '<string>',
'line2' => '<string>',
'sublocality' => '<string>',
'locality' => '<string>',
'administrative_area' => '<string>',
'postal_code' => '<string>',
'country_code' => '<string>'
],
'identity_numbers' => [
[
'number' => '<string>',
'issuing_country_code' => '<string>',
'class' => '<string>',
'created_at' => '<string>',
'updated_at' => '<string>'
]
],
'redacted_at' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Api-Key: <api-key>"
],
]);
$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://api.beltic.com/v1/identity/accounts/{id}"
payload := strings.NewReader("{\n \"data\": {\n \"attributes\": {\n \"external_id\": \"<string>\",\n \"person\": {\n \"name\": {\n \"first\": \"<string>\",\n \"middle\": \"<string>\",\n \"last\": \"<string>\"\n },\n \"birth_date\": \"<string>\"\n },\n \"business\": {\n \"legal_name\": \"<string>\",\n \"registration_date\": \"<string>\",\n \"shareholders\": [\n {\n \"name\": \"<string>\",\n \"shareholder_type\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"id_type\": \"<string>\",\n \"id_number\": \"<string>\",\n \"number_of_share\": \"<string>\",\n \"percentage_of_share\": 123\n }\n ]\n },\n \"address\": {\n \"line1\": \"<string>\",\n \"line2\": \"<string>\",\n \"sublocality\": \"<string>\",\n \"locality\": \"<string>\",\n \"administrative_area\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"country_code\": \"<string>\"\n },\n \"identity_numbers\": [\n {\n \"number\": \"<string>\",\n \"issuing_country_code\": \"<string>\",\n \"class\": \"<string>\",\n \"created_at\": \"<string>\",\n \"updated_at\": \"<string>\"\n }\n ],\n \"redacted_at\": \"<string>\"\n }\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-Api-Key", "<api-key>")
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.patch("https://api.beltic.com/v1/identity/accounts/{id}")
.header("X-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"attributes\": {\n \"external_id\": \"<string>\",\n \"person\": {\n \"name\": {\n \"first\": \"<string>\",\n \"middle\": \"<string>\",\n \"last\": \"<string>\"\n },\n \"birth_date\": \"<string>\"\n },\n \"business\": {\n \"legal_name\": \"<string>\",\n \"registration_date\": \"<string>\",\n \"shareholders\": [\n {\n \"name\": \"<string>\",\n \"shareholder_type\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"id_type\": \"<string>\",\n \"id_number\": \"<string>\",\n \"number_of_share\": \"<string>\",\n \"percentage_of_share\": 123\n }\n ]\n },\n \"address\": {\n \"line1\": \"<string>\",\n \"line2\": \"<string>\",\n \"sublocality\": \"<string>\",\n \"locality\": \"<string>\",\n \"administrative_area\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"country_code\": \"<string>\"\n },\n \"identity_numbers\": [\n {\n \"number\": \"<string>\",\n \"issuing_country_code\": \"<string>\",\n \"class\": \"<string>\",\n \"created_at\": \"<string>\",\n \"updated_at\": \"<string>\"\n }\n ],\n \"redacted_at\": \"<string>\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.beltic.com/v1/identity/accounts/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"attributes\": {\n \"external_id\": \"<string>\",\n \"person\": {\n \"name\": {\n \"first\": \"<string>\",\n \"middle\": \"<string>\",\n \"last\": \"<string>\"\n },\n \"birth_date\": \"<string>\"\n },\n \"business\": {\n \"legal_name\": \"<string>\",\n \"registration_date\": \"<string>\",\n \"shareholders\": [\n {\n \"name\": \"<string>\",\n \"shareholder_type\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"id_type\": \"<string>\",\n \"id_number\": \"<string>\",\n \"number_of_share\": \"<string>\",\n \"percentage_of_share\": 123\n }\n ]\n },\n \"address\": {\n \"line1\": \"<string>\",\n \"line2\": \"<string>\",\n \"sublocality\": \"<string>\",\n \"locality\": \"<string>\",\n \"administrative_area\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"country_code\": \"<string>\"\n },\n \"identity_numbers\": [\n {\n \"number\": \"<string>\",\n \"issuing_country_code\": \"<string>\",\n \"class\": \"<string>\",\n \"created_at\": \"<string>\",\n \"updated_at\": \"<string>\"\n }\n ],\n \"redacted_at\": \"<string>\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"type": "account",
"attributes": {
"external_id": "<string>",
"person": {
"name": {
"first": "<string>",
"middle": "<string>",
"last": "<string>"
},
"birth_date": "<string>"
},
"business": {
"legal_name": "<string>",
"registration_date": "<string>",
"shareholders": [
{
"name": "<string>",
"shareholder_type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"number_of_share": "<string>",
"percentage_of_share": 123
}
]
},
"contact": {
"email": "jsmith@example.com",
"phone": "<string>"
},
"address": {
"line1": "<string>",
"line2": "<string>",
"sublocality": "<string>",
"locality": "<string>",
"administrative_area": "<string>",
"postal_code": "<string>",
"country_code": "<string>"
},
"identity_numbers": [
{
"number": "<string>",
"issuing_country_code": "<string>",
"class": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"created_at": "<string>",
"updated_at": "<string>",
"redacted_at": "<string>"
},
"relationships": {
"sessions": {
"data": [
{
"type": "<string>",
"id": "<string>"
}
]
},
"documents": {
"data": [
{
"type": "<string>",
"id": "<string>"
}
]
}
}
},
"meta": {},
"links": {}
}{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>",
"id": "<string>",
"code": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>",
"header": "<string>"
},
"meta": {}
}
],
"meta": {}
}{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>",
"id": "<string>",
"code": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>",
"header": "<string>"
},
"meta": {}
}
],
"meta": {}
}{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>",
"id": "<string>",
"code": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>",
"header": "<string>"
},
"meta": {}
}
],
"meta": {}
}{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>",
"id": "<string>",
"code": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>",
"header": "<string>"
},
"meta": {}
}
],
"meta": {}
}Identity API — Accounts (Legacy)
Update Account
Update an existing account with partial attributes
PATCH
/
v1
/
identity
/
accounts
/
{id}
Update account
curl --request PATCH \
--url https://api.beltic.com/v1/identity/accounts/{id} \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"data": {
"attributes": {
"external_id": "<string>",
"person": {
"name": {
"first": "<string>",
"middle": "<string>",
"last": "<string>"
},
"birth_date": "<string>"
},
"business": {
"legal_name": "<string>",
"registration_date": "<string>",
"shareholders": [
{
"name": "<string>",
"shareholder_type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"number_of_share": "<string>",
"percentage_of_share": 123
}
]
},
"address": {
"line1": "<string>",
"line2": "<string>",
"sublocality": "<string>",
"locality": "<string>",
"administrative_area": "<string>",
"postal_code": "<string>",
"country_code": "<string>"
},
"identity_numbers": [
{
"number": "<string>",
"issuing_country_code": "<string>",
"class": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"redacted_at": "<string>"
}
}
}
'import requests
url = "https://api.beltic.com/v1/identity/accounts/{id}"
payload = { "data": { "attributes": {
"external_id": "<string>",
"person": {
"name": {
"first": "<string>",
"middle": "<string>",
"last": "<string>"
},
"birth_date": "<string>"
},
"business": {
"legal_name": "<string>",
"registration_date": "<string>",
"shareholders": [
{
"name": "<string>",
"shareholder_type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"number_of_share": "<string>",
"percentage_of_share": 123
}
]
},
"address": {
"line1": "<string>",
"line2": "<string>",
"sublocality": "<string>",
"locality": "<string>",
"administrative_area": "<string>",
"postal_code": "<string>",
"country_code": "<string>"
},
"identity_numbers": [
{
"number": "<string>",
"issuing_country_code": "<string>",
"class": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"redacted_at": "<string>"
} } }
headers = {
"X-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
attributes: {
external_id: '<string>',
person: {
name: {first: '<string>', middle: '<string>', last: '<string>'},
birth_date: '<string>'
},
business: {
legal_name: '<string>',
registration_date: '<string>',
shareholders: [
{
name: '<string>',
shareholder_type: '<string>',
date_of_birth: '<string>',
id_type: '<string>',
id_number: '<string>',
number_of_share: '<string>',
percentage_of_share: 123
}
]
},
address: {
line1: '<string>',
line2: '<string>',
sublocality: '<string>',
locality: '<string>',
administrative_area: '<string>',
postal_code: '<string>',
country_code: '<string>'
},
identity_numbers: [
{
number: '<string>',
issuing_country_code: '<string>',
class: '<string>',
created_at: '<string>',
updated_at: '<string>'
}
],
redacted_at: '<string>'
}
}
})
};
fetch('https://api.beltic.com/v1/identity/accounts/{id}', 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://api.beltic.com/v1/identity/accounts/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'data' => [
'attributes' => [
'external_id' => '<string>',
'person' => [
'name' => [
'first' => '<string>',
'middle' => '<string>',
'last' => '<string>'
],
'birth_date' => '<string>'
],
'business' => [
'legal_name' => '<string>',
'registration_date' => '<string>',
'shareholders' => [
[
'name' => '<string>',
'shareholder_type' => '<string>',
'date_of_birth' => '<string>',
'id_type' => '<string>',
'id_number' => '<string>',
'number_of_share' => '<string>',
'percentage_of_share' => 123
]
]
],
'address' => [
'line1' => '<string>',
'line2' => '<string>',
'sublocality' => '<string>',
'locality' => '<string>',
'administrative_area' => '<string>',
'postal_code' => '<string>',
'country_code' => '<string>'
],
'identity_numbers' => [
[
'number' => '<string>',
'issuing_country_code' => '<string>',
'class' => '<string>',
'created_at' => '<string>',
'updated_at' => '<string>'
]
],
'redacted_at' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Api-Key: <api-key>"
],
]);
$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://api.beltic.com/v1/identity/accounts/{id}"
payload := strings.NewReader("{\n \"data\": {\n \"attributes\": {\n \"external_id\": \"<string>\",\n \"person\": {\n \"name\": {\n \"first\": \"<string>\",\n \"middle\": \"<string>\",\n \"last\": \"<string>\"\n },\n \"birth_date\": \"<string>\"\n },\n \"business\": {\n \"legal_name\": \"<string>\",\n \"registration_date\": \"<string>\",\n \"shareholders\": [\n {\n \"name\": \"<string>\",\n \"shareholder_type\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"id_type\": \"<string>\",\n \"id_number\": \"<string>\",\n \"number_of_share\": \"<string>\",\n \"percentage_of_share\": 123\n }\n ]\n },\n \"address\": {\n \"line1\": \"<string>\",\n \"line2\": \"<string>\",\n \"sublocality\": \"<string>\",\n \"locality\": \"<string>\",\n \"administrative_area\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"country_code\": \"<string>\"\n },\n \"identity_numbers\": [\n {\n \"number\": \"<string>\",\n \"issuing_country_code\": \"<string>\",\n \"class\": \"<string>\",\n \"created_at\": \"<string>\",\n \"updated_at\": \"<string>\"\n }\n ],\n \"redacted_at\": \"<string>\"\n }\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-Api-Key", "<api-key>")
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.patch("https://api.beltic.com/v1/identity/accounts/{id}")
.header("X-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"attributes\": {\n \"external_id\": \"<string>\",\n \"person\": {\n \"name\": {\n \"first\": \"<string>\",\n \"middle\": \"<string>\",\n \"last\": \"<string>\"\n },\n \"birth_date\": \"<string>\"\n },\n \"business\": {\n \"legal_name\": \"<string>\",\n \"registration_date\": \"<string>\",\n \"shareholders\": [\n {\n \"name\": \"<string>\",\n \"shareholder_type\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"id_type\": \"<string>\",\n \"id_number\": \"<string>\",\n \"number_of_share\": \"<string>\",\n \"percentage_of_share\": 123\n }\n ]\n },\n \"address\": {\n \"line1\": \"<string>\",\n \"line2\": \"<string>\",\n \"sublocality\": \"<string>\",\n \"locality\": \"<string>\",\n \"administrative_area\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"country_code\": \"<string>\"\n },\n \"identity_numbers\": [\n {\n \"number\": \"<string>\",\n \"issuing_country_code\": \"<string>\",\n \"class\": \"<string>\",\n \"created_at\": \"<string>\",\n \"updated_at\": \"<string>\"\n }\n ],\n \"redacted_at\": \"<string>\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.beltic.com/v1/identity/accounts/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"data\": {\n \"attributes\": {\n \"external_id\": \"<string>\",\n \"person\": {\n \"name\": {\n \"first\": \"<string>\",\n \"middle\": \"<string>\",\n \"last\": \"<string>\"\n },\n \"birth_date\": \"<string>\"\n },\n \"business\": {\n \"legal_name\": \"<string>\",\n \"registration_date\": \"<string>\",\n \"shareholders\": [\n {\n \"name\": \"<string>\",\n \"shareholder_type\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"id_type\": \"<string>\",\n \"id_number\": \"<string>\",\n \"number_of_share\": \"<string>\",\n \"percentage_of_share\": 123\n }\n ]\n },\n \"address\": {\n \"line1\": \"<string>\",\n \"line2\": \"<string>\",\n \"sublocality\": \"<string>\",\n \"locality\": \"<string>\",\n \"administrative_area\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"country_code\": \"<string>\"\n },\n \"identity_numbers\": [\n {\n \"number\": \"<string>\",\n \"issuing_country_code\": \"<string>\",\n \"class\": \"<string>\",\n \"created_at\": \"<string>\",\n \"updated_at\": \"<string>\"\n }\n ],\n \"redacted_at\": \"<string>\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"type": "account",
"attributes": {
"external_id": "<string>",
"person": {
"name": {
"first": "<string>",
"middle": "<string>",
"last": "<string>"
},
"birth_date": "<string>"
},
"business": {
"legal_name": "<string>",
"registration_date": "<string>",
"shareholders": [
{
"name": "<string>",
"shareholder_type": "<string>",
"date_of_birth": "<string>",
"id_type": "<string>",
"id_number": "<string>",
"number_of_share": "<string>",
"percentage_of_share": 123
}
]
},
"contact": {
"email": "jsmith@example.com",
"phone": "<string>"
},
"address": {
"line1": "<string>",
"line2": "<string>",
"sublocality": "<string>",
"locality": "<string>",
"administrative_area": "<string>",
"postal_code": "<string>",
"country_code": "<string>"
},
"identity_numbers": [
{
"number": "<string>",
"issuing_country_code": "<string>",
"class": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"created_at": "<string>",
"updated_at": "<string>",
"redacted_at": "<string>"
},
"relationships": {
"sessions": {
"data": [
{
"type": "<string>",
"id": "<string>"
}
]
},
"documents": {
"data": [
{
"type": "<string>",
"id": "<string>"
}
]
}
}
},
"meta": {},
"links": {}
}{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>",
"id": "<string>",
"code": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>",
"header": "<string>"
},
"meta": {}
}
],
"meta": {}
}{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>",
"id": "<string>",
"code": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>",
"header": "<string>"
},
"meta": {}
}
],
"meta": {}
}{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>",
"id": "<string>",
"code": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>",
"header": "<string>"
},
"meta": {}
}
],
"meta": {}
}{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>",
"id": "<string>",
"code": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>",
"header": "<string>"
},
"meta": {}
}
],
"meta": {}
}Authorizations
API key for authentication. Access https://console.beltic.com/ to obtain your API key.
Path Parameters
The unique identifier of the account
Example:
"123e4567-e89b-12d3-a456-426614174000"
Body
application/json
Show child attributes
Show child attributes
Was this page helpful?
⌘I