cURL
curl --request GET \ --url https://productlane.com/api/v1/contacts/{id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "name": "<string>", "email": "<string>", "companyId": "<string>", "company": { "id": "<string>", "name": "<string>", "domains": [ "<string>" ] }, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "workspaceId": "<string>" }
Get contact by ID or email. You can get only your own contacts, and authentication is required.
GET /api/v1/contacts/contact_123456789
{ "id": "contact_123456789", "name": "John Doe", "email": "john@acme.com", "companyId": "comp_123456789", "company": { "id": "comp_123456789", "name": "Acme Corp", "domains": ["acme.com"] }, "createdAt": "2024-01-15T10:30:00Z", "updatedAt": "2024-01-15T10:30:00Z", "workspaceId": "ws_123456789" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1 - 255
Successful response
Show child attributes