Skip to main content
PUT
/
api
/
v2
/
network
/
leads
/
update
Update lead
curl --request PUT \
  --url 'https://{domain}/api/v2/network/leads/update?api-key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "lead_id": "string",
  "transaction_id": "string",
  "click_id": "string",
  "conv_status": "pending",
  "revenue": 1,
  "payout": 1
}
'
{
  "status": "success",
  "code": 200,
  "name": "OK",
  "message": "<string>",
  "info": {
    "result": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.scaleo.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api-key
string
query
required

API key passed as query parameter. User must have api_status enabled.

Body

application/json
lead_id
string
required

Lead UUID (required for update).

transaction_id
string

Lead transaction UUID.

click_id
string

Click UUID.

conv_status
enum<string>
Available options:
pending,
approved,
rejected,
hold
revenue
number
payout
number
amount
number
adv_order_id
string
adv_user_id
string
adv_track_id
string
email
string
firstname
string
lastname
string
phone
string
gender
enum<string>
Available options:
m,
f
birthday
string<date>
address
string
city
string
region
string
postcode
string
country
string
vertical
string
custom1
string
custom2
string
custom3
string
custom4
string
custom5
string
custom6
string
custom7
string
custom8
string
custom9
string
custom10
string
public_notes
string
private_notes
string

Response

Lead updated.

status
string
Example:

"success"

code
integer
Example:

200

name
string
Example:

"OK"

message
string
info
object