Get Manual Points Adjustment Details

The API retrieves manual points adjustment details mapped to event log IDs for ManualPointsAdjustment event from the ledger information.

🚧

Note

This is a private API and is accessible only through Neo dataflows.

Prerequisites

  • Access to Neo
  • Basic or OAuth authentication details
  • Access group resource - NA

Resource information

URI to be used in Neo dataflow/das/getManualPointsAdjustmentExplodeLedger
HTTP methodGET
Pagination supported?Yes
Rate limitBased on Neo
Batch supportNA

Request query parameters

Parameter (Parameters marked with * are mandatory)Data TypeDescription
ledgerEntryTypes*StringType of entry recorded in a customer's points ledger. Allowed values: CREDIT, DEBIT
userId*LongUnique customer ID of the customer
endDate*DateLast date to which you want to retrieve the ledger information. Format: YYYY-MM-DD. Example: 2025-06-22
startDate*DateStart date from which you want to retrieve the ledger information. Format: YYYY-MM-DD. Example: 2025-06-22
alternateCurrencyNamesStringName of the alternate currency for which ledger information is retrieved.
pageIntegerRetrieve details of a specific page. Page count starts from 1. Example: page=2 retrieves data on page 2.
countIntegerNumber of results to display per page. The default value is 10. The maximum supported value is 100.

Response parameters

ParameterData TypeDescription
reasonStringReason for the ledger entry
customerIdLongUnique identifier of the customer
eventLogIdLongUnique identifier of the event log
pointsValueIntegerNumber of points associated with the event
createdOnLongTime when the entry was created represented in epoch milliseconds

Sample response

   [
      {
        "reason": "testing the ledger",
        "customerId": 387970841,
        "eventLogId": 38731901,
        "pointsValue": 10,
        "createdOn": 1748950060000
      }
    ]

Error code

Error CodeDescription
400Bad Request
404Not Found
500Internal Server Error