Skip to main content
POST
https://api.mobiska.com/v1
/
check_transaction_status
Check Transaction Status
curl --request POST \
  --url https://api.mobiska.com/v1/check_transaction_status \
  --header 'Content-Type: application/json' \
  --data '
{
  "service_id": 123,
  "transaction_id": "<string>"
}
'
{
  "response_code": "<string>",
  "response_message": "<string>",
  "response_data": {
    "transaction_id": "<string>",
    "status": "<string>",
    "amount": 123,
    "payment_date": "<string>"
  }
}
Check the current status of a payment transaction using its transaction ID.

Request Body

service_id
integer
required
Your service identifier
transaction_id
string
required
The unique transaction identifier from the original payment request

Example Request

curl -X POST https://api.mobiska.com/v1/check_transaction_status \
  -H "Authorization: Basic YOUR_ENCODED_API_KEYS" \
  -H "Content-Type: application/json" \
  -d '{
    "service_id": 2,
    "transaction_id": "5"
  }'

Response

response_code
string
Status code of the request
response_message
string
Human-readable status message
response_data
object
{
  "response_code": "000",
  "response_message": "Success",
  "response_data": {
    "transaction_id": "5",
    "status": "completed",
    "amount": 1.00,
    "payment_date": "2025-01-30T16:31:56Z"
  }
}