API
HomeEasytransac
HomeEasytransac
  1. Transaction
  • Start
    • API Domain Usage
    • Get an API key
    • Communication
  • Documentation
    • Errors
      • ApiError codes
    • Webhooks
      • PUSH Method
      • PULL Method
  • V2
    • Overview
    • Authentication
      • JWT access token - Generate
        POST
    • Endpoints
      • Open Banking
        • Open Banking - Initialize
      • Transaction
        • Transaction - Get status
          GET
  1. Transaction

Transaction - Get status

Sandbox
https://api.sandbox.easytransac.com/v2
Sandbox
https://api.sandbox.easytransac.com/v2
GET
/transaction/status
Gets the status of the requested payment with your Easytransac transaction ID tid or your own transaction/order ID orderId.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Request Code 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 -g --request GET 'https://api.sandbox.easytransac.com/v2/transaction/status?tid=&orderId=' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/json
OK
Body

Example
{
    "success": true,
    "date": "2024-12-31T23:59:59+02:00",
    "data": {
        "tid": "ABC1-ABC1-ABC1",
        "status": "captured",
        "amount": 1000,
        "dateCreated": "2024-12-31T23:59:59+02:00",
        "orderId": "ABCabc123",
        "redirectUrl": "https://api.sandbox.easytransac.com/v2/public/transaction/ABC1-ABC1-ABC1/redirect"
    }
}
🟠401Unauthorized
Previous
Open Banking - Initialize
Built with