PRODUCTION API END POINTS:
...
Code Block | ||
---|---|---|
| ||
{ "adjustment_id": "b43ce6a3-9578-4ba6-8cc5-a4add094a352", "summary": { "desiredStatus": {21/33}, "eligible": 2, "rejected": 0, "transactionscompleted": 42, "eligibletest": 40, "liveReconciledtransactions": 2, "rejectedtransactionsWithDesiredStatus": 0, "isApiUser": true } } |
Response explanation:
"eligible"
: are the transactions that are eligible and the status changed within the process
...
Note |
---|
NOTE: to get the transactions not eligible to reconcile or not reconciled withing the recon process you can use this formula
|
...
Code Block | ||
---|---|---|
| ||
{ "adjustment_id": "b43ce6a3-9578-4ba6-8cc5-a4add094a352", "summary": { "desiredStatus": 33, "eligible": 2, "rejected": 2, "transactionscompleted": 40, "eligibletest": 40, "liveReconciledtransactions": 2, "rejectedtransactionsWithDesiredStatus": 0, "isApiUser": true } } |
2 - Reconciliation multiple surveys (Bulk Reconciliation)
...
Code Block | ||
---|---|---|
| ||
{ "adjustment_id": "46e10177-c3a3-4246-a33a-0c8306f3a9a6", "summary": { "desiredStatus": 33, "transactions"eligible": 2, "rejected": 2, "completed": 60, "eligibletest": 60, "liveReconciledtransactions": 2, "rejected"transactionsWithDesiredStatus": 0, "isApiUser": 2true } } |
NOTE 1:
The system always records any Reconciliation process made via API or UI and this information can be find on the Survey dashboard → Reconciliation Tab
...