Skip to main content
PUT
/
networks
/
reporting
/
conversions
/
{conversionId}
/
saleamount
Update Conversion Sale Amount
curl --request PUT \
  --url https://api.eflow.team/v1/networks/reporting/conversions/{conversionId}/saleamount \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "sale_amount": 0.01,
  "is_event": true
}
'
{
  "result": true
}

Documentation Index

Fetch the complete documentation index at: https://developers.everflow.io/llms.txt

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

Modify the sale amount on an existing conversion. Use this to correct revenue figures after the initial conversion has been recorded.

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Path Parameters

conversionId
string
required

The conversion ID to update.

Body

application/json
sale_amount
number
required

The new sale amount. Must be greater than or equal to 0.

Required range: x >= 0
is_event
boolean

Whether the conversion being updated is a post-conversion event. Set to true when updating an event, false (or omit) for a base conversion.

Response

200 - application/json
result
boolean

Whether the update was successful.