Leads

Get the status of the job.

This endpoint is used to get the status of the job. Once the job is completed, the status will be "completed".

The status can be:

  • pending
  • processing
  • step_linkedin
  • step_import
  • completed
  • error

Once the job is completed, please use the getLeads endpoint to get all the leads that were upserted by this request.

get/api/external/v1/leads/get-status

Query parameters

job_idstring required

The job id returned by an upsert endpoint.

Example:9f1c8b2e-...

The job id returned by an upsert endpoint.

Response

statusstring
processed_rowsinteger
total_rowsinteger

Example response

{
  "status": "pending",
  "processed_rows": 10,
  "total_rows": 100
}

Changes