Get a transaction by order ID
GET/api/v2/transactions/:order_id
Retrieves detailed information about a specific transaction.
Rate Limit: 100 requests per 60 seconds
Access Control:
- Only transactions belonging to your organization can be accessed
- Attempting to access another organization's transaction returns 403 Forbidden
Use Cases:
- Check payment status after customer completes checkout
- Verify transaction details for reconciliation
- Get customer and product information
Request
Responses
- 200
- 400
- 401
- 403
- 404
- 429
- 500
Full transaction details including products, customer info, and payment status.
Bad request - Order ID is required or invalid format.
Unauthorized - Invalid or missing API key.
Forbidden - Transaction belongs to a different organization.
Transaction not found - No transaction exists with this order_id.
Rate limit exceeded.
Internal server error.