Refund Query
Ask AI
Endpoint contract
Query the latest status of a refund created through the Refund API.
POST /v2/refund/queryapplication/jsonSignature required
Request
| Field | Type | Required | Description |
|---|---|---|---|
refundId | String (ULID) | M | GLODIPAY refund ID from the refund API response or refund IPN. |
signature | String(max:750) | M | RSA-MD5 signature. |
Response
The response body contains status, message, and a data object with the refund details.
| data field | Type | Description |
|---|---|---|
transactionId | String | Original transaction ID. |
ref | String | Merchant order reference. |
refundId | String | GLODIPAY refund ID. |
currency | String | ISO 4217 currency code. |
refundAmount | Float | Refund amount. |
status | String | Refund status. |
statusCode | Number | Numeric refund status code. |
metadata | JSON | Original checkout metadata. |
reason | String | Refund reason. |
message | String | Human-readable status message. |
originalRefundCreatedAt | ISO 8601 | PSP refund creation time. |
refundCreatedAt | ISO 8601 | GLODIPAY refund creation time. |
transactionCreatedAt | ISO 8601 | Original transaction creation time. |
signature | String | Response signature. |
Source
This page is derived from Refund API.