Skip to main content
POST
/
api
/
agent
/
link
/
fiat-distribution
Fiat Payment Distribution
curl --request POST \
  --url https://soleaspay.com/api/agent/link/fiat-distribution \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "data": {
    "payer": "SP202116A",
    "currency": "XAF",
    "amount": 10000,
    "distribution": [
      {
        "matricule": "SP20231M",
        "rate": 15
      }
    ]
  }
}
'
{
  "success": true,
  "message": "fiat distribution success"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-api-key
string
required

Your authentication API key

Example:

"Your-Apikey-Here"

Body

application/json
data
object
required

Response

Fiat distribution completed successfully

success
boolean
Example:

true

message
string
Example:

"fiat distribution success"