cURL
curl --request GET \ --url https://productlane.com/api/v1/contacts \ --header 'Authorization: Bearer <token>'
{ "contacts": [ { "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>" } ], "total": 123 }
Get all contacts for your workspace, you can get only your own contacts, and authentication is required
GET /api/v1/contacts?skip=0&take=10
{ "contacts": [ { "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" } ], "total": 1 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response
Show child attributes