- Auth
- Customer
- Passengers
- invoice Info
- Favorite Flights
- Notifications
- Fast Actions
- Customer - Get ProfileGET
- Customer - Update ProfilePOST
- Customer - Update PasswordPOST
- Search History - FlightGET
- Customer - Remove AccountDELETE
- Utils
- Flight
- Bus
- Hotel
- Socket
- Auto Completes
- Queue / Socket
- Misc
- Payment
- Pay with Account Balance (For Corporate Customers)
- Credit Card Storage
- Pay with Credit Card (New Card)
- Pay with Credit Card (Saved Card)
- Orders
- Blog
- Contents
- Refund
- Notifications
- Otp VerifyPOST
Card Payment - Check Status
Developing
Testing Env
Testing Env
GET
https://test-api.ucuzyolu.com/pay/card/{{payment_token}}/status
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
client-id
string
optional
Default:
302382-1928283273-237723829-292999
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 -g --request GET 'https://test-api.ucuzyolu.com/pay/card//status' \
--header 'client-id: 302382-1928283273-237723829-292999'
Responses
🟢200OK
application/json
Body
data
object
required
token
string
required
amount
number
required
state
string
required
comission
integer
required
total
number
required
details
object
required
paymentType
string
required
is3d
boolean
required
authMode
string
required
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": {
"token": "9tpBql40Yf198FL6PZfVkh8H69bUVetBtWJZEdyJ9wnEjJ2naK17vP1RAO5kg7DiyOqeugwHmZvqIciJesZpJpWc8B6Gr8UXz1KvGCvCGcbw5LhQ6Jhn700JWf91OfNn",
"amount": 1142.78,
"state": "success",
"comission": 0,
"total": 1142.78,
"details": {
"cardExpiry": "05/28",
"cardHolder": "John Due",
"cardNumber": "404809******7528",
"customerIp": "192.168.65.1",
"cardAssociation": "Visa"
},
"paymentType": "Parolapara POS",
"is3d": true,
"authMode": "preauth"
},
"success": true,
"code": 0,
"message": ""
}
Modified at 2024-10-06 18:20:43