onComplete callback.
This transaction ID can be used with the SDK to fetch additional details about
the transaction.
Visit the API reference documentation for full details about the
transaction resource, and any other API.
onComplete callback.
This transaction ID can be used with the SDK to fetch additional details about
the transaction.
using Gr4vy;
using Gr4vy.Models.Components;
var sdk = new Gr4vySDK(
merchantAccountId: "default",
bearerAuth: "<YOUR_BEARER_TOKEN_HERE>"
);
var res = await sdk.Transactions.GetAsync(transactionId: "7099948d-7286-47e4-aad8-b68f7eb44591");
// handle response
{
"type": "transaction",
"id": "f7099948d-7286-47e4-aad8-b68f7eb44591",
"status": "authorized",
"amount": 1299,
"currency": "AUD",
"payment_method": {
"type": "payment-method",
"id": "77a76f7e-d2de-4bbc-ada9-d6a0015e6bd5",
"method": "card",
...
},
...
}