1. Transactions
Privage Open API
Open API V2
  • Open API
  • Open API V2
  • Welcome to Privage Open API Documents (In-development)
  • Authentication
    • Generate Exchange Token
      POST
    • Exchange Access Token
      POST
    • Renew Access Token
      POST
    • Get Access Token
      POST
  • Extension Config
    • Get Current Add-On status
      GET
  • Campaigns
    • Get Campaign
      GET
  • Member Profiles
    • Get Profile
      GET
  • Transactions
    • Get Transaction
      GET
    • Add Point
      POST
    • Burn Point
      POST
    • Void Transaction By Id
      DELETE
    • Void Transaction By RefNo
      DELETE
    • Void Transaction By RefId
      DELETE
  • Coupons
    • Get Coupon Set
      GET
    • Create Coupon Set
      POST
    • Give Coupon to Member ID
      POST
    • Get Give Coupon History
      GET
    • Void Give Coupon
      DELETE
    • Check Coupon
      GET
    • Mark Use Coupon
      POST
  1. Transactions

Get Transaction

สำหรับผู้ใช้ทั่วไป (Privage Open API)
https://core.privageapp.com
สำหรับผู้ใช้ทั่วไป (Privage Open API)
https://core.privageapp.com
GET
/v2/connect/transactions
ส่งคืนรายการ Transaction ทั้งหมด
การแบ่งหน้า:
page — เริ่มต้น 1
size — ค่าเริ่มต้น 100, สูงสุด 1000 (เกินจะได้ 400)
ตัวกรองช่วงวันที่ (ไม่บังคับ):
from — ISO 8601 UTC ขอบล่างแบบ inclusive (ต้องลงท้ายด้วย Z เท่านั้น ไม่รับ offset เช่น +07:00)
to — ISO 8601 UTC ขอบบนแบบ exclusive
ช่วงแบบ half-open เหมาะสำหรับการ poll รายวัน/รายชั่วโมงโดยไม่นับซ้ำ เช่น from=2026-04-17T00:00:00Z&to=2026-04-18T00:00:00Z
ช่วงต้องไม่เกิน 31 วัน (1 เดือน)

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Query Params

Responses

🟢200
application/json
Paginated transactions
Body

🟠400
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://core.privageapp.com/v2/connect/transactions?page&size&search&from=2026-04-17T00:00:00Z&to=2026-04-18T00:00:00Z' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "pagination": {
        "total": 0,
        "page": 0,
        "size": 0
    },
    "data": [
        {
            "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
            "ref_id": "string",
            "name": "string",
            "last_name": "string",
            "phone_code": "string",
            "phone_number": "string",
            "card_no": "string",
            "ref_no": "string",
            "created_at": "2019-08-24T14:15:22.123Z",
            "points": 0,
            "receive_type": "string",
            "amount": 0
        }
    ]
}
Modified at 2026-04-19 14:06:31
Previous
Get Profile
Next
Add Point
Built with