{manage-transaction}
{manage-transaction}
API function is a tool to manage the existing transactions rather than initiate the new ones, including
the control over the successful authorizations.
Name | URL |
---|---|
Sandbox | https://pci-gw-test.praxispay.com/agent/manage-transaction |
Live | https://gw.praxisgate.com/agent/manage-transaction |
✓ - required value
? - optional, value or null
✕ - always appears as null
Variable | Type | Description | |
---|---|---|---|
merchant_id | varchar(50) | ✓ | Merchant API client account identifier |
application_key | varchar(32) | ✓ | Identifier of your application (website) |
intent | varchar(32) | ✓ | Action intended to be executed: - capture-authorization to capture the authorization - cancel-authorization to cancel the authorization |
tid | int(11) | ✓ | transaction identifier |
version | varchar(3) | ✓ | API version |
timestamp | int(11) | ✓ | Request time (unix timestamp, seconds) |
Variable | Type | Description | |
---|---|---|---|
status | int | ✓ | API communication status - for transaction processing status please refer to transaction.transaction.status - 0 if the request was successful - Negative integer if internal server/network error occurs - Positive integer if application/logical error occurs |
description | varchar(256) | ✓ | Accurate description of the result. Return the actual error for any exception as it helps to diagnose issues in production |
transaction | <Object> | ? | Transaction object. Appears in all cases except the authentication/validation error, or application malfunction |
version | varchar(3) | ✓ | API version |
timestamp | int(11) | ✓ | Response time (unix timestamp, seconds) |
The full signature generation algorithm can be found in the Authentication section.
Request signature parameters
merchant_id
application_key
timestamp
intent
tid
Response signature parameters
status
timestamp
transaction.tid
transaction.transaction_status
transaction.processed_currency
transaction.processed_amount
{
"merchant_id": "Test-Integration-Merchant",
"application_key": "Sandbox",
"intent": "capture-authorization",
"tid": 756850,
"version": "1.3",
"timestamp": 1590613956
}
{
"status": 0,
"description": "Ok",
"transaction": {
"transaction_type": "authorization",
"transaction_status": "approved",
"tid": 756850,
"transaction_id": "13397",
"currency": "EUR",
"amount": 100,
"conversion_rate": 1.000000,
"charge_currency": "EUR",
"charge_amount": 100,
"fee": 0,
"payment_method": "Credit Card",
"payment_processor": "TestCardProcessor",
"gateway": "s-pTSZyK23E1Ee5KZpcNbX_aFl0HuhQ0",
"card": {
"card_token": "J-4-a0vPhjZ9R75JP98VDUFgbh9y8sYr",
"card_type": "VISA",
"card_number": "411111******1111",
"card_exp": "12\/2024",
"card_issuer_name": "Bank of Somewhere",
"card_issuer_country": "GB"
},
"wallet": null,
"is_3d": 0,
"is_cascade": 0,
"cascade_level": 0,
"reference_id": 756850,
"withdrawal_request_id": 756853,
"account_identifier": null,
"created_by": "INTERNET",
"edited_by": "INTERNET",
"status_code": "SC-002",
"status_details": "Transaction approved"
},
"version": "1.3",
"timestamp": 1590611635
}
{
"status": 0,
"description": "Ok",
"transaction": {
"transaction_type": "authorization",
"transaction_status": "rejected",
"tid": 756853,
"transaction_id": "13348",
"currency": "EUR",
"amount": 100,
"conversion_rate": 1.000000,
"charge_currency": "EUR",
"charge_amount": 100,
"fee": 0,
"payment_method": "Credit Card",
"payment_processor": "TestCardProcessor",
"gateway": "s-pTSZyK23E1Ee5KZpcNbX_aFl0HuhQ0",
"avs_alert": 0,
"verification_alert": 0,
"cid": "1",
"card": null,
"wallet": null,
"is_3d": 0,
"is_cascade": 0,
"cascade_level": 0,
"reference_id": 756850,
"withdrawal_request_id": 756853,
"account_identifier": null,
"created_by": "INTERNET",
"edited_by": "INTERNET",
"status_code": "SC-003",
"status_details": "Transaction rejected"
},
"version": "1.3",
"timestamp": 1590611635
}