GET
/
persons
/
{person_id}
/
contact
Get Person Contact
curl --request GET \
  --url https://jobs-api.registercheck.de/api/v2/persons/{person_id}/contact \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "full_name": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "city": "<string>",
  "birth_date": "<string>",
  "online_presence": {
    "avatar_url": "<string>",
    "socials": {
      "linkedin_url": "<string>",
      "instagram_url": "<string>",
      "facebook_url": "<string>",
      "twitter_url": "<string>",
      "crunchbase_url": "<string>",
      "website_url": "<string>"
    },
    "phone_number": "<string>",
    "email_addresses": [
      "<string>"
    ],
    "summary": "<string>"
  },
  "found": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Enter your API key

Path Parameters

person_id
string
required

Response

Successful Response

Response model for person contact/social media information

id
string
required

Unique identifier for the person

full_name
string | null

Full name of the person

first_name
string | null

First name of the person

last_name
string | null

Last name of the person

city
string | null

City of residence

birth_date
string | null

Date of birth

online_presence
object | null

Online presence and contact information Model for person's online presence/social media information

found
boolean
default:true

Whether the person was found in the database

message
string | null

Additional message or error information