Skip to main content
POST
/
payment
/
funds
Add Funds
curl --request POST \
  --url https://api.example.com/payment/funds \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 123
}'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Cookies

session
String

Body

application/json
amount
integer
required

Amount to add in cents

Response

Successful Response