curl --request GET \
--url https://app.titanx.io/api/public/v2/jobs/{jobId}/contacts \
--header 'Authorization: Bearer <token>'{
"data": {
"contacts": [
{
"firstName": "<string>",
"lastName": "<string>",
"phone": "<string>",
"companyAccount": "<string>",
"id": "<string>",
"userId": "<string>",
"jobId": "<string>",
"clientId": "<string>",
"leadId": "<string>",
"fsTotalCalls": "<string>",
"email": "<string>",
"phoneStatus": "p1",
"phoneType": "mobile",
"phoneCountry": "<string>",
"phone2": "<string>",
"phone2Status": "p1",
"phone2Type": "mobile",
"phone2Country": "<string>",
"phone3": "<string>",
"phone3Status": "p1",
"phone3Type": "mobile",
"phone3Country": "<string>",
"phone4": "<string>",
"phone4Status": "p1",
"phone4Type": "mobile",
"phone4Country": "<string>",
"phone5": "<string>",
"phone5Status": "p1",
"phone5Type": "mobile",
"phone5Country": "<string>",
"phoneExt": "<string>",
"street": "<string>",
"city": "<string>",
"stateProvince": "<string>",
"zipPostalCode": "<string>",
"country": "<string>",
"title": "<string>",
"website": "<string>",
"linkedInUrl": "<string>",
"companyLinkedInUrl": "<string>",
"persona": "<string>",
"dept": "<string>",
"level": "<string>",
"jobFunction": "<string>",
"timeZone": "<string>",
"companyCountry": "<string>",
"companyState": "<string>",
"companyCity": "<string>",
"companyZip": "<string>",
"companyAddress": "<string>",
"numberOfEmployees": "<string>",
"annualRevenue": "<string>",
"industry": "<string>",
"primarySubIndustry": "<string>",
"sicCodes": "<string>",
"naicsCodes": "<string>",
"technologies": "<string>",
"campaignListName": "<string>",
"recordOwner": "<string>",
"contactCrmId": "<string>",
"accountCrmId": "<string>",
"databaseContactId": "<string>",
"databaseCompanyId": "<string>",
"customerContactId": "<string>",
"leadStatus": "P1",
"intent": "<string>",
"unmappedFields": {},
"enrichmentContactId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"pagination": {
"page": 2,
"perPage": 2,
"totalCount": 1,
"totalPages": 1,
"hasNextPage": true,
"hasPreviousPage": true
}
}
}Get all contacts associated with a specific job, with pagination support. Default limit is 100 contacts per page.
curl --request GET \
--url https://app.titanx.io/api/public/v2/jobs/{jobId}/contacts \
--header 'Authorization: Bearer <token>'{
"data": {
"contacts": [
{
"firstName": "<string>",
"lastName": "<string>",
"phone": "<string>",
"companyAccount": "<string>",
"id": "<string>",
"userId": "<string>",
"jobId": "<string>",
"clientId": "<string>",
"leadId": "<string>",
"fsTotalCalls": "<string>",
"email": "<string>",
"phoneStatus": "p1",
"phoneType": "mobile",
"phoneCountry": "<string>",
"phone2": "<string>",
"phone2Status": "p1",
"phone2Type": "mobile",
"phone2Country": "<string>",
"phone3": "<string>",
"phone3Status": "p1",
"phone3Type": "mobile",
"phone3Country": "<string>",
"phone4": "<string>",
"phone4Status": "p1",
"phone4Type": "mobile",
"phone4Country": "<string>",
"phone5": "<string>",
"phone5Status": "p1",
"phone5Type": "mobile",
"phone5Country": "<string>",
"phoneExt": "<string>",
"street": "<string>",
"city": "<string>",
"stateProvince": "<string>",
"zipPostalCode": "<string>",
"country": "<string>",
"title": "<string>",
"website": "<string>",
"linkedInUrl": "<string>",
"companyLinkedInUrl": "<string>",
"persona": "<string>",
"dept": "<string>",
"level": "<string>",
"jobFunction": "<string>",
"timeZone": "<string>",
"companyCountry": "<string>",
"companyState": "<string>",
"companyCity": "<string>",
"companyZip": "<string>",
"companyAddress": "<string>",
"numberOfEmployees": "<string>",
"annualRevenue": "<string>",
"industry": "<string>",
"primarySubIndustry": "<string>",
"sicCodes": "<string>",
"naicsCodes": "<string>",
"technologies": "<string>",
"campaignListName": "<string>",
"recordOwner": "<string>",
"contactCrmId": "<string>",
"accountCrmId": "<string>",
"databaseContactId": "<string>",
"databaseCompanyId": "<string>",
"customerContactId": "<string>",
"leadStatus": "P1",
"intent": "<string>",
"unmappedFields": {},
"enrichmentContactId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"pagination": {
"page": 2,
"perPage": 2,
"totalCount": 1,
"totalPages": 1,
"hasNextPage": true,
"hasPreviousPage": true
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
x >= 11 <= x <= 1000Successful response with job contacts and pagination
Show child attributes