DojaPay API
  1. Transactions
DojaPay API
  • Authentication
    • Generate Access Token
      POST
  • Virtual Account
    • Create Virtual Account
      POST
    • Get Virtual Account Details
      GET
  • Transactions
    • Verify Transaction
      POST
  • Payout
    • Request Payout
      POST
    • Get Bank List
      GET
  1. Transactions

Verify Transaction

POST
/transaction/verify

Request

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

Examples

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.dojapay.com/api/v1/transaction/verify' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
	"reference": "DJP-20250806190530UZYV8REP"
}'
Response Response Example
{
    "success": true,
    "code": "string",
    "message": [
        "string"
    ],
    "data": {
        "event_type": "string",
        "session_id": "string",
        "account_name": "string",
        "account_number": "string",
        "bank_name": "string",
        "bank_code": "string",
        "sender_bank_code": "string",
        "sender_bank_name": "string",
        "sender_account_number": "string",
        "sender_account_name": "string",
        "amount": "string",
        "settlement_amount": 0,
        "reference": "string"
    },
    "errors": null,
    "reference": "string",
    "timestamp": "string"
}
Modified at 2025-11-03 14:50:30
Previous
Get Virtual Account Details
Next
Request Payout
Built with