Transaction Query
Endpoint contract
Query the current status and full details of a transaction that was created through checkout, S2S card, or iframe flows.
POST /v2/checkout/queryapplication/jsonSignature required
Request
| Field | Type | Required | Description |
|---|---|---|---|
transactionId | String (ULID) | M | GLODIPAY transaction ID. |
signature | String(max:750) | M | RSA-MD5 signature generated from the request body. |
Response
| Field | Type | Description |
|---|---|---|
merchantId | String | Merchant ID. |
transactionId | String | GLODIPAY transaction ID. |
transactionNumber | String | Human-readable transaction number. |
ref | String | Merchant order reference. |
currency | String | ISO 4217 currency code. |
amount | Float | Invoice amount. |
paidAmount | Float | Amount charged to the buyer. |
settlementAmount | Float | Amount to settle to the merchant. |
estimationSettlementAt | ISO 8601 | Estimated settlement time. |
fees | JSON | Fee breakdown. |
status | String | Transaction status. |
statusCode | Number | Numeric status code. |
metadata | JSON | Original metadata. |
transactionDocuments | JSON | Original supporting documents. |
paymentMethodDetails | JSON | Payment method details. |
message | String | Human-readable status message. |
descriptor | String | Transaction descriptor. |
transactionCreatedAt | ISO 8601 | GLODIPAY creation time. |
originalTransactionCreatedAt | ISO 8601 | PSP creation time. |
signature | String | Response signature to verify with the GLODIPAY public key. |
fees object
| Field | Type | Description |
|---|---|---|
buyer | Float | Buyer-facing fee amount. |
seller | Float | Merchant fee amount. |
rolling | Float | Rolling reserve amount. |
operate | Float | Total operating fees (processor + GLODIPAY + partner). |
estimationRollingReleaseAt | ISO 8601 | Estimated rolling reserve release datetime. |
paymentMethodDetails object
| Field | Type | Description |
|---|---|---|
displayName | String | Payment method label. |
group | String | Payment method group type. |
family | String | Payment method family type. |
type | String | Payment method type (e.g. card, googlepay). |
card | JSON | Optional. Card-specific details (only for card payments). Includes name, firstSixDigits, lastFourDigits, expiryMonth, expiryYear, type, issuer, funding, etc. |
Source
This page is derived from Checkout API.