Skip to main content
PUT
/
networks
/
reporting
/
conversions
/
{conversionId}
/
notes
Update Conversion Notes
curl --request PUT \
  --url https://api.eflow.team/v1/networks/reporting/conversions/{conversionId}/notes \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "notes": "Verified with advertiser — approved manually"
}
'
{
  "conversion_id": "<string>",
  "notes": "<string>",
  "conversion_unix_timestamp": 123,
  "status": "<string>",
  "is_event": true,
  "payout": 123,
  "revenue": 123,
  "sale_amount": 123,
  "transaction_id": "<string>",
  "relationship": {}
}

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.

Attach free-form notes to an existing conversion. Notes are visible to network users in the Everflow UI and are returned on subsequent reads of the conversion record. Pass an empty string to clear existing notes.

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
notes
string
required

Free-form notes attached to the conversion. Visible to network users in the Everflow UI and returned on subsequent reads of the conversion record. Pass an empty string to clear existing notes.

Response

200 - application/json

The updated conversion record.

The full conversion record after the update — same shape as the Get Conversion By ID response. The notes field reflects the value that was just set.

conversion_id
string

Unique conversion identifier.

notes
string

The updated notes value.

conversion_unix_timestamp
integer

Unix timestamp of the conversion (UTC seconds).

status
string

Conversion status (e.g. approved, pending, rejected).

is_event
boolean

Whether this record is a post-conversion event.

payout
number

Partner payout amount.

revenue
number

Revenue amount.

sale_amount
number

Sale amount (if applicable).

transaction_id
string

Associated click transaction ID.

relationship
object

Related objects (offer, advertiser, affiliate, account_manager, campaign, etc.).