/api/memberpoints
Read and record member points adjustments.
GET
List records, or retrieve one by appending its ID to the path.
Query parameters
| Name | Type | Example | Notes |
|---|---|---|---|
mbr_id | int | 123 | Filter results by mbr id. |
after | date | 2026-09-24 | Filter results by after. |
before | date | 2026-09-24 | Filter results by before. |
includeOrders | boolean | true | Include orders in the response. Accepts true or 1. |
offset | int | 123 | Skip this many matching records before returning results. |
pageSize | int | 123 | Limit the number of records returned; accepted values are 1 through 999, with 200 used otherwise. |
POST
Create or update a record from a JSON object.
Request content type: application/json
Request body fields
| Name | Type | Example | Notes |
|---|---|---|---|
mbr_id | int | 123 | Set the mbr id value. |
adjustpoints | number | 19.95 | Set the adjustpoints value. |
adjustmentnote | text | example | Set the adjustmentnote value. |
adjustdate | date | 2026-09-24 | Set the adjustdate value. |
/api/memberpointsbalances
Read member points balances.
GET
Read member points balances.
Query parameters
| Name | Type | Example | Notes |
|---|---|---|---|
mbr_id | int | 123 | Filter results by mbr id. |