API Logs
View API request and response details
API Logs
Review all API requests made to Plexy from your integration.
Accessing API logs
- Go to Developers > Logs in your Dashboard
- Select API Logs tab
Log entry details
Each API log shows:
| Field | Description |
|---|---|
| Request ID | Unique request identifier |
| Method | HTTP method (GET, POST, etc.) |
| Endpoint | API path called |
| Status | HTTP response code |
| Duration | Request processing time |
| Timestamp | When request was made |
| IP Address | Source IP of request |
View request details
Click a log entry to see:
Request
POST /v2/payments HTTP/1.1
Host: api.plexy.money
x-api-key: Bearer YOUR_API_KEY
Content-Type: application/json
{
"amount": 5000,
"currency": "USD",
"payment_method": "pm_card_visa"
}Response
HTTP/1.1 200 OK
Content-Type: application/json
Request-Id: req_abc123
{
"id": "pay_xyz789",
"amount": 5000,
"currency": "USD",
"status": "succeeded"
}Filter logs
By status
| Filter | Description |
|---|---|
| All | All requests |
| Successful | 2xx responses |
| Client errors | 4xx responses |
| Server errors | 5xx responses |
By endpoint
Filter to specific API endpoints:
/v2/payments/v2/refunds/v2/customers
By date
Select predefined ranges or custom dates:
- Last hour
- Last 24 hours
- Last 7 days
- Custom range
Search logs
Search by request ID:
req_abc123Or by resource ID:
pay_xyz789Using request IDs
Every response includes a Request-Id header:
Request-Id: req_abc123Include this when contacting support for faster troubleshooting.
API errors
Failed requests show error details:
{
"error": {
"type": "invalid_request_error",
"code": "parameter_missing",
"message": "Missing required parameter: amount",
"param": "amount"
}
}