Retrieve a contact
GET
/contacts/categories/{category_id}/contacts/{id}Retrieve a contact by ID.
Request
Path Params
category_id
integer
required
The id of the contact category.
Example:
3
id
integer
required
The id of the contact.
Example:
50
Responses
OK(200)
Contact doesn't exists(410)
Unprocessable Entity(422)
Error(500)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
contact
object
required
id
integer
required
label
string
required
entity
string
required
first_name
string
required
last_name
string
required
gender
null
required
birthdate
string
required
birthdate_day
integer
required
birthdate_month
integer
required
birthdate_year
integer
required
birthplace
null
required
nationality
null
required
street
string
required
street2
string
required
last_rental
null
required
city
string
required
state
string
required
zip
string
required
county
null
required
country
string
required
email
string
required
website
null
required
phone_number
string
required
uuid
string
required
created_by
integer
required
updated_by
integer
required
deleted_at
null
required
created_at
string
required
updated_at
string
required
driver_license
string
required
phone_alternative
null
required
email_alternative
null
required
housenumber
null
required
suburb
null
required
identification
null
required
phone_cc
null
required
phone_country
null
required
accounting_list_id
null
required
accounting_edit_sequence
null
required
password
null
required
reset_password_token
null
required
expiration_date_for_password_reset_token
null
required
phone_ext
null
required
f193
null
required
f194
null
required
f195
null
required
f196
null
required
f198
null
required
invoices_currency
null
required
invoices_open_balance
null
required
invoices_overdue_balance
null
required
car_rental_reservation_count
integer
required
external_contact_type
null
required
external_contact_id
null
required
car_rental_balance
null
required
expiration_notification_sent
integer
required
f252
null
required
f254
null
required
f256
string
required
from_public_form
boolean
required
verified
boolean
required
language
string
required
invoices_last_reminder_sent_at
null
required
id_verification_id
null
required
Exampleresponse
{
"contact": {
"id": 50,
"label": "Jon Marvin",
"entity": "person",
"first_name": "Jon",
"last_name": "Marvin",
"gender": null,
"birthdate": "1994-08-09",
"birthdate_day": 9,
"birthdate_month": 8,
"birthdate_year": 1994,
"birthplace": null,
"nationality": null,
"street": "560 Kacie Lake Suite 377",
"street2": "Suite 875",
"last_rental": null,
"city": "Lake Xanderbury",
"state": "Delaware",
"zip": "40416",
"county": null,
"country": "pr",
"email": "wisozk.hermina@heaney.com",
"website": null,
"phone_number": "+3856858232",
"uuid": "3o5zk87q-r1cz-cvx2-dnf4-wmlai4pizejx",
"created_by": 1,
"updated_by": 1,
"deleted_at": null,
"created_at": "2024-08-09T00:20:52.000000Z",
"updated_at": "2024-08-09T00:20:52.000000Z",
"driver_license": "8426",
"phone_alternative": null,
"email_alternative": null,
"housenumber": null,
"suburb": null,
"identification": null,
"phone_cc": null,
"phone_country": null,
"accounting_list_id": null,
"accounting_edit_sequence": null,
"password": null,
"reset_password_token": null,
"expiration_date_for_password_reset_token": null,
"phone_ext": null,
"f193": null,
"f194": null,
"f195": null,
"f196": null,
"f198": null,
"invoices_currency": null,
"invoices_open_balance": null,
"invoices_overdue_balance": null,
"car_rental_reservation_count": 1,
"external_contact_type": null,
"external_contact_id": null,
"car_rental_balance": null,
"expiration_notification_sent": 0,
"f252": null,
"f254": null,
"f256": "2025-03-21 00:00:00",
"from_public_form": false,
"verified": true,
"language": "en",
"invoices_last_reminder_sent_at": null,
"id_verification_id": null
}
}
Last modified: 5 months ago