GET
/
datasets
/
persons
/
{personId}
curl --request GET \
  --url https://api.tic.io/datasets/persons/{personId} \
  --header 'x-api-key: <api-key>'
{
  "personId": 123,
  "nationalityCountryCodeAlpha2": "<string>",
  "personalIdentityNumber": "<string>",
  "isProtected": true,
  "isMarried": true,
  "givenName": "<string>",
  "firstName": "<string>",
  "middleName": "<string>",
  "lastName": "<string>",
  "fullName": "<string>",
  "sex": "male",
  "isCoordinationNumber": true,
  "birthday": "<string>",
  "age": 123
}

Authorizations

x-api-key
string
header
required

Path Parameters

personId
integer
required

The person id

Response

200 - application/json

OK

The response is of type object.