GetTransaction
GET
/Api/GetTransaction/{transactionId}
Api
Last modified:2025-04-17 20:59:21
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
transactionId
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.ipay-solutions.com/Api/GetTransaction/'
Responses
🟢200OK
text/plain
Body
traceId
string <uuid>
read-onlyoptional
succeeded
boolean
read-onlyoptional
errors
array[object (ServiceError) {2}] | null
read-onlyoptional
that occurred during the identity operation.
code
string | null
optional
description
string | null
optional
warnings
array[object (ServiceError) {2}] | null
read-onlyoptional
code
string | null
optional
description
string | null
optional
message
null
optional
result
object (TransactionDetailsResponse)
optional
isTestMode
boolean
optional
transactionId
string | null
optional
status
string | null
optional
transactionPayoutProcessedDate
string <date-time> | null
optional
merchantChannelId
integer <int32>
optional
paymentProviderId
integer <int32>
optional
carrierId
integer <int32>
optional
orderId
string | null
optional
shopOrderId
string | null
optional
orderCountry
string | null
optional
description
string | null
optional
currency
string | null
optional
locale
string | null
optional
amount
number <double>
optional
paymentMethod
string | null
optional
isRefunded
boolean
optional
consumerName
string | null
optional
consumerAccount
string | null
optional
consumerBic
string | null
optional
consumerCountry
string | null
optional
consumerEmail
string | null
optional
transactionVerificationNumber
integer <int32>
required
Example
{
"traceId": "729bb1bf-882d-483b-89d3-5855dc5af3aa",
"succeeded": true,
"errors": [
{
"code": "string",
"description": "string"
}
],
"warnings": [
{
"code": "string",
"description": "string"
}
],
"message": null,
"result": {
"isTestMode": true,
"transactionId": "string",
"status": "string",
"transactionPayoutProcessedDate": "2019-08-24T14:15:22Z",
"merchantChannelId": 0,
"paymentProviderId": 0,
"carrierId": 0,
"orderId": "string",
"shopOrderId": "string",
"orderCountry": "string",
"description": "string",
"currency": "string",
"locale": "string",
"amount": 0,
"paymentMethod": "string",
"isRefunded": true,
"consumerName": "string",
"consumerAccount": "string",
"consumerBic": "string",
"consumerCountry": "string",
"consumerEmail": "string",
"transactionVerificationNumber": 0
}
}
Modified at 2025-04-17 20:59:21