POST
/
payments
/
send-payment
curl --request POST \
  --url https://agent.payman.ai/api/payments/send-payment \
  --header 'Content-Type: application/json' \
  --header 'x-payman-api-secret: <api-key>' \
  --data '{
  "walletId": "<string>",
  "amountDecimal": 123,
  "payeeId": "<string>",
  "memo": "<string>",
  "metadata": {}
}'
{
  "reference": "<string>",
  "externalReference": "<string>",
  "status": "INITIATED"
}

Authorizations

x-payman-api-secret
string
header
required

Body

application/json

Response

200
application/vnd.payman.v1+json

The payment was successful.

The response is of type object.