ResourcesCharges

List all charges

This endpoint allows you to retrieve a paginated list of charges for your store.

This endpoint allows you to retrieve a paginated list of charges for your store.

GET
/v2/charges

Authorization

bearerAuth
AuthorizationBearer <token>

Provide your SellApp API key as a bearer token.

In: header

Query Parameters

limit?integer

Limit the number of blacklist rules returned.

Default15
Range1 <= value <= 100
page?integer

The page number you are attempting to access.

Default1
Range1 <= value

Response Body

application/json

curl -X GET "https://sell.app/api/v2/charges"
{
  "data": [
    {
      "id": 1,
      "url": "https://sell.app/store/charges/select/1?signature=...",
      "status": "PENDING"
    }
  ],
  "links": {},
  "meta": {}
}