get
https://{subdomain}.myshoplaza.com/openapi/2025-06/application_charges/
Retrieves detailed information about a specific application charge using its unique charge_id.
The Get Application Charge Detail API retrieves detailed information about a specific application charge using its unique charge_id.
This API is especially useful for:
- Verifying the status of a specific application charge.
- Reviewing details such as charge name, price, and return URL.
- Debugging or auditing application charges.
Request Parameters
Public Request Parameters
Path Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
charge_id | string | Yes | The unique ID of the application charge. | 372212374292312759 |
Response Explanation
Public Response Parameters
Successful Response
| Parameter | Type | Example | Description |
|---|---|---|---|
code | string | "success" | Status indicator |
message | string | "Inventory levels retrieved" | Result description |
data.application_charge | objects | {...} | application charge |
Application Charge Object Structure
| Parameter | Type | Example | Description |
|---|---|---|---|
id | string | chg_123456 | Unique identifier for the charge |
name | string | Premium Plan | Name of the charge |
price | string | 19.99 | Price of the charge |
confirm_url | string | https://example.com/confirm | URL to confirm the charge |
return_url | string | https://example.com/return | URL to return after confirmation |
status | string | active | Status of the charge |
test | boolean | false | Whether this is a test charge |
created_at | string | 2023-06-01T00:00:00Z | Creation time (ISO 8601 format) |
updated_at | string | 2023-06-01T00:00:00Z | Last modified time (ISO 8601 format) |
Error Response
| Field | Type | Example | Description |
|---|---|---|---|
code | string | InvalidParameter | Error http message |
message | string | `` | Error message |
