You find additional data and labels on the charge attempt. However, in order to get the charge attempt for a given transaction id you have to use the charge attempt search service and create your query as shown below:
{
"filter": {
"children": [
{
"fieldName": "charge.transaction",
"operator": "EQUALS",
"type": "LEAF",
"value": "<transactionID>"
},
{
"fieldName": "state",
"operator": "EQUALS",
"type": "LEAF",
"value": "SUCCESSFUL"
}
],
"type": "AND"
}
}
This will return the charge attempt and all the labels on there.
Comments
0 comments
Please sign in to leave a comment.