curl --request POST \
--url https://api.taidalos.com/v1/subjects/create-subject \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"aliases": [
"Facebook",
"Instagram"
],
"date_of_birth": "1980-04-07T00:00:00.000Z",
"date_of_incorporation": "1980-04-07T00:00:00.000Z",
"industries": [
"Banking",
"Insurance",
"Telecommunications"
],
"internal_id": "crm_id#123456789",
"name": "Jan Marsalek",
"nationalities": [
"US",
"UK"
],
"places": [
{
"description": "Head Office",
"place": "123 Main Street, New York, USA"
}
],
"type": "INDIVIDUAL"
}
}
'