ResourcesCharges

Retrieve a charge

Retrieves the details of an existing charge by its ID. Refer to the charge model section for details on the returned object structure.

Retrieves the details of an existing charge by its ID. Refer to the charge model section for details on the returned object structure.

GET
/v2/charges/{charge}

Authorization

bearerAuth
AuthorizationBearer <token>

Provide your SellApp API key as a bearer token.

In: header

Path Parameters

charge*integer

The charge path parameter.

Response Body

application/json

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