Skip to main content
POST
/
v1
/
subjects
/
create-subject
Create Subject
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"
  }
}
'
{
  "data": {
    "subject_id": "123e4567-e89b-12d3-a456-426614174000"
  }
}

Headers

Authorization
string
required

Body

application/json

request body

data
object

data represents the primary structure containing information about a subject to be created, including details like name, type, industries, and more.

Response

Created

data
object

data contains the created subject's unique identifier.