Skip to main content
POST
/
subaccounts
/
billing
/
charges
Create Manual Billing Charge
curl --request POST \
  --url https://api.anchorage-staging.com/v2/subaccounts/billing/charges \
  --header 'Api-Access-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "charges": [
    {
      "amount": "1000.00",
      "subaccountId": "ec761b5e-fd2c-497a-a9a0-f8738ac97bdf"
    }
  ],
  "idempotentId": "<string>"
}
'
{
  "data": {
    "ids": [
      "<string>"
    ]
  }
}

Authorizations

Api-Access-Key
string
header
required

An API key associated with a security role

Body

application/json

Details of the billing charge to create

charges
object[]
required
Required array length: 1 - 100 elements
feeType
enum<string>
required
Available options:
ADVISORY,
MODEL,
MANAGEMENT
idempotentId
string
required
interval
object

Response

Ids of the created billing charges

data
object
required