Payment Endpoints
Check Status
API Documentation
Authentication Endpoints
In-Game Authentication
User Endpoints
CMS Endpoints
Packages Endpoints
Cart Endpoints
- POSTCart Data
- Packages
- POSTApply Coupon & Giftcard
- Coupons
- Giftcards
- Referrals
- POSTSelecting Servers List
- POSTPromoted Packages
- GETGet Discord OAuth URL
Payment Endpoints
Payment Endpoints
Check Status
Retrieves the current status of a payment. Rate limited to 18 requests per minute per IP address.
POST
/
payments
/
checkStatus
curl --request POST \
--url https://v3.minestorecms.com/api/payments/checkStatus \
--header 'Content-Type: application/json' \
--data '{
"order_id": "MS-123456"
}'
{
"status": "success",
"message": "Payment is successful.",
"order_data": {
"id": 1,
"internal_id": "MS-123456",
"price": 99.99,
"currency": "USD",
"status": "PAID",
"gateway": "stripe",
"created_at": "2025-01-22 10:30:00"
}
}
Body
application/json
Response
200
application/json
Payment status retrieved successfully
The response is of type object
.
curl --request POST \
--url https://v3.minestorecms.com/api/payments/checkStatus \
--header 'Content-Type: application/json' \
--data '{
"order_id": "MS-123456"
}'
{
"status": "success",
"message": "Payment is successful.",
"order_data": {
"id": 1,
"internal_id": "MS-123456",
"price": 99.99,
"currency": "USD",
"status": "PAID",
"gateway": "stripe",
"created_at": "2025-01-22 10:30:00"
}
}