GET
/
persons
/
{person_id}
curl --request GET \
  --url https://jobs-api.registercheck.de/api/v2/persons/{person_id} \
  --header 'Authorization: Bearer <token>'
{
  "person": {
    "id": "<string>",
    "slug": "<string>",
    "full_name": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "city": "<string>",
    "birth_date": "<string>",
    "birth_year": 123,
    "birth_month": 123,
    "profiles": [
      {
        "id": "<string>",
        "is_confirmed": true,
        "confidence_score": 123,
        "type": "representative",
        "is_general_partner": true,
        "company_id": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Enter your API key

Path Parameters

person_id
string
required

Response

200
application/json

Successful Response

Response model for person detail endpoint