This will allow you to search for a payment transaction inside Kartra, and to verify whether the transaction exists, or not.

TypeParametersValues
POSTcmd*search_transaction
POSTtransaction_id*integer

* Required fields Here is an example:

'actions' => [
    '0' => [
        'cmd' => 'search_transaction',
        'transaction_id' => 1
    ]
]

Success message:

{
  "status": "Success",
  "message": "Transaction exists"
}

Error Cases:

Type NumberMessageCause
247Transaction doesn't exist
  • The transaction you are trying to find does not exist in our database.
An example of an error message:
{
  "status": "Error",
  "message": "Transaction doesn't exist",
  "type": "247"
}