- Overview
- Reference
- API Structure
- Public API
- Introduction
- Loyalty Club
- Member
- Offers
- Rewards
- Games
- CMS Content
- Management API
- Introduction
- Core
- Applications
- Branding
- Privacy Policy
- Cookie Policy
- Terms
- Domains
- Domain Email Configs
- Domain Web Configs
- TLS Certificates
- Links
- Fonts
- Subunits
- Subunits Scopes
- Contacts
- Translations
- Promotions Policy
- Tracker
- Social Logins
- Billing
- Service Quotas
- Recurring Charges
- Service Usages
- Customer Accoutning Configurations
- Show billing summaryGET
- Show billing breakdownGET
- Show billing balanceGET
- Show billing manual balance changes GET
- Add billing manual balance changes CopyPOST
- SMS Sender Identities
- Member Authentication Configuration
- Members
- Listing Members
- Member Profile
- Imports
- Groups
- Programs
- Benefits
- Cars
- Webhooks
- Misc
- Receipts
- Messages
- Stores
- Offers
- Rewards
- Triggerer
- CMS
- Introduction
- Pages
- Components
- Website
- Website Domains
- Venue Info
- Landing Pages
- Landing Page Templates
- Articles
- Events
- Events Groups
- Job Postings
- Press Releases
- Tags
- Service Messages
- Content Prototypes
- ContentPrototype Model
- List Content Prototypes
- Show Content Prototype
- Create Content Prototype
- Update Content Prototype
- Destroy Content Prototype
- List Organization Content Prototypes
- Show Organization Content Prototype
- Create Organization Content Prototype
- Update Organization Content Prototype
- Destroy Organization Content Prototype
- Mixed Content
- Attachments
- Events
- Games
- Scraper
- Files
- Receipts
- Users API
- Operations API
- Introduction
- Manager API
- Tenant API
- Messaging API
- Data API
- ML API
- Introduction
- Predict Sending KPI v1
- Explain Sending KPI Prediction v1
- Predict Sending KPI In Date Range v1
- Predict Sending Popularity v2
- Predict Sending Text Popularity v2
- Predict Sending Time Series Popularity v2
- Explain Sending Popularity Prediction v2
- Explain Sending Text Popularity Prediction v2
- Explain Sending Time Series Popularity Prediction v2
- Recommend sending time v2
- Detect Receipt Fraud
- Generate Image
- Generate Text
- Generate Sending Text
- (Draft) Reporting API
- Other
Show billing manual balance changes
GET
https://api.mpc.dev.placewise.com/v1/billing/manual_balance_changes
API Permit:Billing:Api:ManualBalanceChange:Index
API Context:Customer
Authorizations:User
Request
Query Params
per_page
integerÂ
optional
Header Params
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.mpc.dev.placewise.com/v1/billing/manual_balance_changes?per_page=&page_no=1' \
--header 'X-User-Agent;' \
--header 'X-Product-Name;' \
--header 'X-Customer;' \
--header 'Authorization;'
Responses
🟢200Success
application/json
Body
manual_balance_changes
array[object (ManualBalanceChange) {5}]Â
required
id
integerÂ
required
>= 1
date
stringÂ
required
value
stringÂ
required
type
enum<string>Â
required
Allowed values:
refillcorrection
bl_user_id
stringÂ
required
pagination_info
object (PaginationInfo)  | nullÂ
read-onlyrequired
count
integerÂ
read-onlyrequired
Example:
1000
total_count
integerÂ
required
>= 1
Example:
2050
per_page
integerÂ
read-onlyrequired
Example:
1000
total_pages
integerÂ
read-onlyrequired
Example:
3
current_page
integerÂ
read-onlyrequired
Example:
1
next_page
integer  | nullÂ
read-onlyrequired
Example:
2
prev_page
integer  | nullÂ
read-onlyrequired
Example:
null
is_first_page
booleanÂ
read-onlyrequired
Example:
true
is_last_page
booleanÂ
read-onlyrequired
Example:
false
is_out_of_range
booleanÂ
read-onlyrequired
per_page
param out of range?Example:
false
offset
integerÂ
read-onlyrequired
Example:
0
Example
{
"manual_balance_changes": [
{
"id": 5542816891805633,
"date": "2025-04-01T11:29:17.304Z",
"value": "-9.9",
"type": "correction",
"bl_user_id": "075fdddd-dceb-454f-a202-189aaab62ee8"
},
{
"id": 2558616565395370,
"date": "2025-04-01T11:29:17.305Z",
"value": "100.0",
"type": "refill",
"bl_user_id": "361da9bb-07e3-436f-b5ed-484eda087e6b"
},
{
"id": 1256274720473543,
"date": "2025-04-01T11:29:17.309Z",
"value": "-30.0",
"type": "correction",
"bl_user_id": "98f2ba6d-45de-4b49-9135-693809ba2683"
}
],
"pagination_info": {
"total_count": 2050
}
}
🟠422Parameter Error