Skip to main content
POST
/
apps
/
portal
/
leads
/
process
Queue a lead for both update and enrichment.
curl --request POST \
  --url https://api.provident.ae/v2/apps/portal/leads/process \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Lead processing has been queued.",
  "data": {
    "updateTask": {},
    "enrichTask": {}
  },
  "timestamp": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

leadid
number
required

The ID of the lead to process.

name
string

The name of the lead.

phone
string

The phone number of the lead.

email
string

The email address of the lead.

token
string
required

Static token for authentication.

Response

Lead processing has been queued.

success
boolean
Example:

true

message
string
Example:

"Lead processing has been queued."

data
object
timestamp
string<date-time>