Skip to main content
GET
/
api
/
public
/
v2
/
jobs
/
{jobId}
/
contacts
Get job contacts
curl --request GET \
  --url https://app.titanx.io/api/public/v2/jobs/{jobId}/contacts \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "contacts": [
      {
        "leadId": "<string>",
        "fsTotalCalls": "<string>",
        "firstName": "<string>",
        "lastName": "<string>",
        "email": "jsmith@example.com",
        "phone": "<string>",
        "phoneStatus": "p1",
        "phoneType": "mobile",
        "phoneTimezone": "<string>",
        "phone2": "<string>",
        "phone2Status": "p1",
        "phone2Type": "mobile",
        "phone2Timezone": "<string>",
        "phone3": "<string>",
        "phone3Status": "p1",
        "phone3Type": "mobile",
        "phone3Timezone": "<string>",
        "phone4": "<string>",
        "phone4Status": "p1",
        "phone4Type": "mobile",
        "phone4Timezone": "<string>",
        "phone5": "<string>",
        "phone5Status": "p1",
        "phone5Type": "mobile",
        "phone5Timezone": "<string>",
        "phoneExt": "<string>",
        "street": "<string>",
        "city": "<string>",
        "stateProvince": "<string>",
        "zipPostalCode": "<string>",
        "country": "<string>",
        "title": "<string>",
        "companyAccount": "<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>",
        "leadStatus": "P1",
        "unmappedFields": {},
        "enrichmentContactId": "<string>"
      }
    ],
    "pagination": {
      "page": 2,
      "perPage": 2,
      "totalCount": 1,
      "totalPages": 1,
      "hasNextPage": true,
      "hasPreviousPage": true
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

jobId
string<uuid>
required

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:100
Required range: 1 <= x <= 1000

Response

200 - application/json

Successful response with job contacts and pagination

data
object
required