Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://prod.featherhq.com/api/v1/leads \
--header 'Authorization: Bearer <token>'{
"leads": [
{
"id": "<string>",
"organizationId": "<string>",
"customerLeadId": "<string>",
"customer": {},
"conversationHistory": [
"<any>"
],
"phoneNumber": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"pagination": {
"limit": 10,
"nextCursor": "<string>"
}
}List all leads with cursor-based pagination
curl --request GET \
--url https://prod.featherhq.com/api/v1/leads \
--header 'Authorization: Bearer <token>'{
"leads": [
{
"id": "<string>",
"organizationId": "<string>",
"customerLeadId": "<string>",
"customer": {},
"conversationHistory": [
"<any>"
],
"phoneNumber": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"pagination": {
"limit": 10,
"nextCursor": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.