curl --request GET \
--url https://{companyName}.api.joinluminous.com/external/api/v1/contacts/{contactId} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "789123",
"created_at": "2023-03-15T14:30:00Z",
"updated_at": "2023-03-15T14:30:00Z",
"status": "active",
"first_name": "John",
"last_name": "Smith",
"email": "john.smith@acmecorp.com",
"phone": "555-987-6543",
"phone_2": "555-555-5555",
"full_name": "John Smith",
"company_id": "123456",
"company": {
"id": "123456",
"name": "Acme Corporation"
},
"is_primary": true,
"receive_quotation_pdf": false,
"receive_purchase_order_pdf": false,
"receive_purchase_order_invoice_pdf": false
}
}Get detailed information for a specific contact by ID
curl --request GET \
--url https://{companyName}.api.joinluminous.com/external/api/v1/contacts/{contactId} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "789123",
"created_at": "2023-03-15T14:30:00Z",
"updated_at": "2023-03-15T14:30:00Z",
"status": "active",
"first_name": "John",
"last_name": "Smith",
"email": "john.smith@acmecorp.com",
"phone": "555-987-6543",
"phone_2": "555-555-5555",
"full_name": "John Smith",
"company_id": "123456",
"company": {
"id": "123456",
"name": "Acme Corporation"
},
"is_primary": true,
"receive_quotation_pdf": false,
"receive_purchase_order_pdf": false,
"receive_purchase_order_invoice_pdf": false
}
}Authenticate using a bearer token. To obtain a token, contact developers@joinluminous.com
The unique identifier of the contact
Contact details
Show child attributes