cURL
curl --request GET \ --url https://productlane.com/api/v1/contacts \ --header 'Authorization: Bearer <token>'
{ "contacts": [ { "id": "<string>", "email": "<string>", "name": "<string>", "imageUrl": "<string>", "companyId": "<string>", "workspaceId": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "isDeleted": true, "version": 123, "company": { "id": "<string>", "name": "<string>", "workspaceId": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "isDeleted": true, "version": 123, "linearCustomerId": "<string>", "size": 123, "revenue": 123, "statusId": "<string>", "statusName": "<string>", "statusColor": "<string>", "tierId": "<string>", "tierName": "<string>", "logoUrl": "<string>", "domains": [ "<string>" ], "autoAdd": true, "intercomId": "<string>", "hubspotId": "<string>", "productboardId": "<string>", "externalIds": [ "<string>" ], "slugId": "<string>" }, "intercomId": "<string>", "hubspotId": "<string>", "productboardId": "<string>", "zendeskId": "<string>" } ], "nextPage": { "take": 123, "skip": 123 }, "hasMore": true, "count": 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