The API retrieves custom field values mapped to event log IDs for TransactionAdd events from the ledger.
🚧This is a private API and is accessible only through Neo dataflows.
| |
|---|
| URI to be used in Neo dataflow | /das/getTransactionAddExplodeLedger |
| HTTP method | GET |
| Pagination supported? | Yes |
| Rate limit | Based on Neo |
| Batch support | NA |
| Parameter (Parameters marked with * are mandatory) | Data Type | Description |
|---|
| entity_id* | Long | Unique customer ID of the customer |
| cf_names* | String | Custom field names for which to retrieve values. |
| event_log_ids* | String | Unique identifier generated for the event at the time of its creation. |
| page | Integer | Retrieve details of a specific page. Page count starts from 1. Example: page=2 retrieves data on page 2. |
| count | Integer | Number of results to display per page. The default value is 10. The maximum supported value is 100. |
| Parameter | Datatype | Description |
|---|
| eventTypeId | Integer | Unique identifier for the event type |
| billId | Long | Unique identifier for the bill |
| customerId | Long | Unique identifier of the customer |
| eventTime | Long | Timestamp of when the event occurred, in epoch milliseconds. |
| customFieldId | Integer | Unique identifier for the custom field |
| eventLogId | Long | Unique identifier of the event log |
| tillId | Long | Identifier for the till |
| customFieldValue | String | Value of the custom field. Example: CREDIT |
| customFieldName | String | Name of the custom field. Example:ledgerentryname |
| uniqueId | String | Unique ID associated with the record |
| processingTime | Long | Timestamp of when the event was processed, in epoch milliseconds. |
[
{
"eventTypeId": 15,
"billId": 2152306126,
"customerId": 387970841,
"eventTime": 1738481105000,
"customFieldId": 6212,
"eventLogId": 38769078,
"tillId": 50692627,
"customFieldValue": "CREDIT",
"customFieldName": "ledgerentryname",
"uniqueId": "tAfisFBDFB",
"processingTime": 1738481105000
}
]
| Error Code | Description |
|---|
| 400 | Bad Request |
| 404 | Not Found |
| 500 | Internal Server Error |