📋 Configuration
API URL: http://127.0.0.1:8000/api
API Key: rma_OKmXkjtDxP6ZIZI8...
Test Mode: Yes
🔐 1. Validate API Credentials
Test your API credentials to ensure they're valid and active.
💳 2. Create Payment
Create a new payment using the Simple Payment API.
📊 3. Check Payment Status
Check the status of an existing payment transaction.
💻 4. Code Examples
Here are the raw HTTP requests being made:
Create Payment Request:
POST http://127.0.0.1:8000/api/payment/create
Content-Type: application/json
Accept: application/json
{
"api_key": "rma_OKmXkjtDxP6ZIZI8V2sRUUDDUpdfkZPE",
"api_secret": "ubEZf57F9jYaNDimP41B...",
"amount": 250.00,
"order_id": "DIRECT_123456789",
"customer_email": "customer@example.com",
"description": "Direct integration test payment"
}
Status Check Request:
POST http://127.0.0.1:8000/api/integration-test/payment/status
Content-Type: application/json
Accept: application/json
{
"api_key": "rma_OKmXkjtDxP6ZIZI8V2sRUUDDUpdfkZPE",
"api_secret": "ubEZf57F9jYaNDimP41B...",
"transaction_id": "TXN_1234567890_123"
}