Add Funds to a Carrier

You can check your balance for a particular carrier by calling List Carriers endpoint. For any carrier account where requires_funded_amount is set to true, you can add funds.

ShipEngine support must enable this endpoint for you. If you'd like to utilize this resource, please submit a request with our support team.

Supported Carriers

  • Stamps.com
  • Endicia

Example

PUT /v1/carriers/:carrier_id/add_funds

1
2
3
4
5
6
7
8
9
PUT /v1/carriers/se-123890/add_funds HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__
Content-Type: application/json
{
"currency": "usd",
"amount": 10.0
}
1
2
3
4
5
6
{
"balance": {
"currency": "usd",
"amount": 50.00
}
}