Skip to main content
POST
/
v1
/
sandbox
/
business-deposits
Deposit
curl --request POST \
  --url https://api.cadanapay.com/v1/sandbox/business-deposits \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "value": {
    "amount": 10000,
    "currency": "USD"
  },
  "description": "Payroll 10/10"
}
'
{
  "code": "invalid_request_body",
  "message": "The request body provided is not valid",
  "params": {
    "field": "Value is invalid."
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Deposit funds to a business in sandbox

value
object
required
description
string

description for the deposit

Example:

"Payroll 10/10"

Response

Successful operation