/outcome
Invoke /outcome to retrieve information about orders that have been submitted through /evaluate.
Try it right now:
- Check out the /outcome Reference.
- Check out our Postman Collection
Integrate /outcome into your own application or used as a standalone tool to retrieve order information and track the progress of your orders.
Required key
orderSessionKey | From /evaluate response. |
Request
POST /v1/outcome HTTP/1.1
Authorization: bearer Replace_with_token_retrieved_by_/oauth2/token
Content-Type: application/json
{
"orderSessionKey": "{{uuid/guid}}"
}
Response
{
"status": "APPROVED | DECLINED | EXPIRED | CANCELLED | SUBMITTED",
"confirmationId": "382AB3", //A unique identifier for the API request
"success": true,
"result": null,
"statusCode": null,
"errors": [],
"customProperties": {}
}
status | string | The state of this transaction rescue: For CIT calls: APPROVED ; DECLINED For MIT calls: APPROVED; DECLINED; EXPIRED; PROCESSING; CANCELLED |
confirmationId | string | A unique identifier for the API request |
success | boolean | Indicates if the API request was successful |
result | string | The result of the API request Optional |
statusCode | string | The status code of the API request Optional |
errors | array of strings | Any errors encountered during the API request Optional |
customProperties | object | Additional custom properties for the API request Optional |
Updated 1 day ago