Invoice limitations

Below is a list of currency pairs and the minimum and maximum amounts per currency pair supported for invoices.

Production

Sandbox

In the event that you exceed the min/max invoice amount thresholds, you can expect the following error messages from our API in response to your Create Invoice request:

{
  "errors": [
    {
      "status": 422,
      "title": "amount is below minimum",
      "detail": "amount: 10.0, minimum: 50.00",
      "code": "amount_below_minimum"
    }
  ]
}

Last updated