Was this helpful?
curl -X POST https://api.complycube.com/v1/customLists/{:customListId}/records \
-H 'Authorization: <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"entityType": "person",
"names": [
{
"type": "primary",
"firstName": "John",
"lastName": "Smith"
},
{
"type": "alias",
"firstName": "John",
"lastName": "Smyth"
}
],
"active": true,
"gender": "male",
"countries": [
{
"type": "Jurisdiction",
"country": "US"
},
{
"type": "Resident of",
"country": "GB"
}
],
"dates": [
{
"type": "Date of Birth",
"date": {
"day": "01",
"month": "01",
"year": "1987"
}
}
],
"images": [
"https://www.example.com/johnDoe.jpg"
]
}'{}