Skip to main content
POST
/
api
/
recovery
/
pulse
Log Organic Success (Pulse)
curl --request POST \
  --url https://api.revtain.com/api/recovery/pulse \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "amount": 5000,
  "currency": "USD",
  "transactionId": "your_internal_tx_id_123"
}
'
{
  "success": true,
  "message": "Organic success logged",
  "transactionId": "da646dba-ce56-4483-ad0a-2a4fac54a5e2"
}

Documentation Index

Fetch the complete documentation index at: https://docs.revtain.com/llms.txt

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

Authorizations

X-API-KEY
string
header
required

Your Revtain API key (format: rev_xxx). Provided during onboarding.

Body

application/json
amount
integer
required

Amount in smallest currency unit.

Required range: 50 <= x <= 100000000
Example:

5000

currency
string
default:USD
Example:

"USD"

transactionId
string

Your internal transaction ID. If omitted, Revtain generates one automatically.

Example:

"your_internal_tx_id_123"

Response

Organic success logged

success
boolean
Example:

true

message
string
Example:

"Organic success logged"

transactionId
string
Example:

"da646dba-ce56-4483-ad0a-2a4fac54a5e2"