Skip to main content
PUT
/
api
/
v2
/
affiliate
/
aff-billing
/
payment-request
Send payment request
curl --request PUT \
  --url 'https://{domain}/api/v2/affiliate/aff-billing/payment-request?api-key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "currency": "USD",
  "amount": 1
}
'
{
  "status": "success",
  "code": 200,
  "name": "OK",
  "message": "<string>"
}

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

currency
string
required

3-letter currency code (e.g. USD).

Maximum string length: 3
amount
number

Requested payment amount.

Response

Payment request submitted.

status
string
Example:

"success"

code
integer
Example:

200

name
string
Example:

"OK"

message
string