Netzme PPOB
  • Introducing
  • Getting Started
  • API Reference
    • Token Signature
    • Authentication Token
    • Transaction Signature
    • Open API
      • Get Balance
      • Product List
      • Product Percentage
      • Product Detail
      • Validate User
      • Order
      • Buy
      • Order Detail
      • Order Inquiry
      • Order List
      • Create Virtual Account
      • List Transactions
    • WebView
      • WebView Transaction Flow
      • WebView Interfaces
Powered by GitBook
On this page
  • Query Params
  • Headers
  • Example
  1. API Reference
  2. Open API

List Transactions

PreviousCreate Virtual AccountNextWebView

Last updated 1 month ago

This API will show you list of transactions

GEThtps://tokoapi-dev.netzme.com/public/api/ppob/v1/transactions?merchantId={merchantId}

Query Params

Name
Type
Description

merchantId

String

Your merchantID, eg: M_YDXabcd1

limit

String

limit of shown data

page

String

page of data

statusTransaction

String

list status transaction complete, pending, processing, failed, expired split value by comma,

eg : complete%2Cpending

search

String

search by trx id

startDate

String

format string date YYYY-MM-DD, eg : 2025-02-06

endDate

String

format string date YYYY-MM-DD, eg : 2025-02-07

Headers

Parameter
Description

Content-Type

application/json

X-CLIENT-ID

Partner ClientId, eg Xersia01

X-TIMESTAMP

Epoch Time of the request, we will check it. The date of timestamp should be the date you request.

X-MSG-ID

Your unique request-id, eg: Random UUID

X-SIGNATURE

X-AUTHORIZATION

Example

{
    "requestId": "ed3f6763-b1bd-40e3-aecb-ddaa2c3a9775",
    "type": "GET_TRANSACTION",
    "status": 200,
    "statusMessage": "success",
    "body": {
        "items": [
            {
                "basic_price": 5768,
                "created_at": "2025-03-03T15:07:33.518026Z",
                "item_name": "Simpatiiiiuuw - Rp 5.000 ",
                "product_name": "Simpati",
                "reference_id": "",
                "revenue": 173,
                "selling_price": 5941,
                "status": "pending",
                "transaction_id": "1740989253696",
                "type": "pulsa",
                "updated_at": "2025-03-03T15:07:33.518026Z"
            },{
                "basic_price": 5768,
                "created_at": "2025-02-28T14:56:16.926466Z",
                "item_name": "Simpatiiiiuuw - Rp 5.000 ",
                "product_name": "Simpati",
                "reference_id": "1740729376750",
                "revenue": 173,
                "selling_price": 5941,
                "status": "complete",
                "transaction_id": "1740729376750",
                "type": "pulsa",
                "updated_at": "2025-02-28T14:57:45.839897Z"
            },{
                "basic_price": 5768,
                "created_at": "2025-02-19T14:27:10.606431Z",
                "item_name": "Simpatiiiiuuw - Rp 5.000 ",
                "product_name": "Simpati",
                "reference_id": "",
                "revenue": 173,
                "selling_price": 5941,
                "status": "failed",
                "transaction_id": "1739950030862",
                "type": "pulsa",
                "updated_at": "2025-02-19T14:27:11.888355Z"
            }
        ],
        "total_items": 57
    }
}
{
    "requestId": "b0ab2366-0f33-42bf-ada6-b79c3f1aa66a",
    "type": "AUTH",
    "status": 401,
    "statusMessage": "Failed verify transaction signature, please make sure your request"
}
curl --location --request GET 'https://tokoapi-dev.netzme.com/public/api/ppob/v1/transactions?merchantId=M_YDXabcd1&limit=10&page=1' \
--header 'X-CLIENT-ID: Xersia01' \
--header 'X-SIGNATURE: 808bac29deaf1efc7f99e1f8aaefdccfbe9e135756ada8b3ab906124a6be19d0' \
--header 'Content-Type: application/json' \
--header 'X-AUTHORIZATION: eybzaWduYXR1cmUiOiI0MjZhZDg0NTgwMDdlNGNhZmE1MTBiY2ViZWM1Mzk5YWRlYmIxMzZhZjVmY2Y0MThmNjUyN2M5YmZkNDViYzBmIiwidG9rZW5QcG9iVXNlclJlc3BvbnNlIjp7InVzZXJJZCI6InJhaHlhbi1jbGllbnQiLCJleHBpcmVkVHMiOjE3MDk2OTcyMDI3ODYsInJvbGVzIjpbInBwb2IuZ2FtZV90b3B1cF9pbl9nYW1lIl19fQ==' \
--header 'X-TIMESTAMP: 1867413352207' \
--header 'X-MSG-ID: 61cc351c-1e97-46f5-9179-ec9c610c06ce' \

Transaction Signature, see

Authorization token you get after hit

page
Authentication Token