curl --request POST \
--url https://api.engine.usesophic.com/persons/{person_id}/claims \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"claim_type": "identity",
"date_of_birth": "2023-12-25",
"first_name": "<string>",
"last_name": "<string>"
}
'import requests
url = "https://api.engine.usesophic.com/persons/{person_id}/claims"
payload = {
"claim_type": "identity",
"date_of_birth": "2023-12-25",
"first_name": "<string>",
"last_name": "<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({
claim_type: 'identity',
date_of_birth: '2023-12-25',
first_name: '<string>',
last_name: '<string>'
})
};
fetch('https://api.engine.usesophic.com/persons/{person_id}/claims', 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.engine.usesophic.com/persons/{person_id}/claims",
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([
'claim_type' => 'identity',
'date_of_birth' => '2023-12-25',
'first_name' => '<string>',
'last_name' => '<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://api.engine.usesophic.com/persons/{person_id}/claims"
payload := strings.NewReader("{\n \"claim_type\": \"identity\",\n \"date_of_birth\": \"2023-12-25\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\"\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://api.engine.usesophic.com/persons/{person_id}/claims")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"claim_type\": \"identity\",\n \"date_of_birth\": \"2023-12-25\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.engine.usesophic.com/persons/{person_id}/claims")
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 \"claim_type\": \"identity\",\n \"date_of_birth\": \"2023-12-25\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"archived_at": "2026-07-20T08:15:00Z",
"claim_type": "identity",
"created_at": "2026-07-14T09:30:00Z",
"date_of_birth": "2023-12-25",
"first_name": "<string>",
"id": "<string>",
"last_name": "<string>",
"lifecycle": "active",
"person": "<string>",
"status": "pending",
"superseded_at": "2026-08-01T12:00:00Z",
"verified_at": "2026-07-14T10:00:00Z"
}{
"code": "<string>",
"detail": "<string>",
"context": {},
"docs": "<string>",
"params": [
{
"code": "<string>",
"detail": "<string>",
"path": [
123
]
}
]
}Create a claim for a person
Submit a claim of any type for a person. The claim is created with pending status and will need verification.
curl --request POST \
--url https://api.engine.usesophic.com/persons/{person_id}/claims \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"claim_type": "identity",
"date_of_birth": "2023-12-25",
"first_name": "<string>",
"last_name": "<string>"
}
'import requests
url = "https://api.engine.usesophic.com/persons/{person_id}/claims"
payload = {
"claim_type": "identity",
"date_of_birth": "2023-12-25",
"first_name": "<string>",
"last_name": "<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({
claim_type: 'identity',
date_of_birth: '2023-12-25',
first_name: '<string>',
last_name: '<string>'
})
};
fetch('https://api.engine.usesophic.com/persons/{person_id}/claims', 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.engine.usesophic.com/persons/{person_id}/claims",
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([
'claim_type' => 'identity',
'date_of_birth' => '2023-12-25',
'first_name' => '<string>',
'last_name' => '<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://api.engine.usesophic.com/persons/{person_id}/claims"
payload := strings.NewReader("{\n \"claim_type\": \"identity\",\n \"date_of_birth\": \"2023-12-25\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\"\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://api.engine.usesophic.com/persons/{person_id}/claims")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"claim_type\": \"identity\",\n \"date_of_birth\": \"2023-12-25\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.engine.usesophic.com/persons/{person_id}/claims")
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 \"claim_type\": \"identity\",\n \"date_of_birth\": \"2023-12-25\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"archived_at": "2026-07-20T08:15:00Z",
"claim_type": "identity",
"created_at": "2026-07-14T09:30:00Z",
"date_of_birth": "2023-12-25",
"first_name": "<string>",
"id": "<string>",
"last_name": "<string>",
"lifecycle": "active",
"person": "<string>",
"status": "pending",
"superseded_at": "2026-08-01T12:00:00Z",
"verified_at": "2026-07-14T10:00:00Z"
}{
"code": "<string>",
"detail": "<string>",
"context": {},
"docs": "<string>",
"params": [
{
"code": "<string>",
"detail": "<string>",
"path": [
123
]
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The ID of the person.
Body
- IdentityClaimSpec
- NationalitiesClaimSpec
- ResidenceClaimSpec
- TaxResidenciesClaimSpec
- FatcaStatusClaimSpec
- PepStatusClaimSpec
- EducationLevelClaimSpec
- EmploymentClaimSpec
- FinancialProfileClaimSpec
- InvestmentExperienceClaimSpec
- RegistrationClaimSpec
- ContactDetailsClaimSpec
- LeiClaimSpec
- RegisteredAddressClaimSpec
- OperatingAddressClaimSpec
- BusinessNatureClaimSpec
- ExpectedActivityClaimSpec
- RelationshipsClaimSpec
Spec for identity claim data.
Response
Created
- IdentityPersonClaim
- NationalitiesPersonClaim
- ResidencePersonClaim
- TaxResidenciesPersonClaim
- FatcaStatusPersonClaim
- PepStatusPersonClaim
- EducationLevelPersonClaim
- EmploymentPersonClaim
- FinancialProfilePersonClaim
- InvestmentExperiencePersonClaim
- RegistrationPersonClaim
- ContactDetailsPersonClaim
- LeiPersonClaim
- RegisteredAddressPersonClaim
- OperatingAddressPersonClaim
- BusinessNaturePersonClaim
- ExpectedActivityPersonClaim
- RelationshipsPersonClaim
Date and time a newer pending claim replaced this row; null if this is the current pending row.
"2026-07-20T08:15:00Z"
Date and time the claim was created.
"2026-07-14T09:30:00Z"
Unique resource identifier.
Derived lifecycle role from status, archived_at, and superseded_at.
active, in_flight, historical ID of the person this claim belongs to.
Claim status (pending or verified). Non-null superseded_at means a newer verified claim replaced this row.
pending, verified Date and time a newer verified claim replaced this row; null if this is the current row.
"2026-08-01T12:00:00Z"
Date and time the claim was verified; null while pending.
"2026-07-14T10:00:00Z"