/api/v1/shop/order/check-payment-status

API endpoint documentation

post
Tags:order
Operation ID: postApiV1ShopOrderCheck-payment-status
Query Parameters
Body
hashstring
required
Example: "sSO98YxzR4KJiOu66Jn6K3wRwa4FPI7S"
Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

fetch('https://bizkithub.com/api/v1/shop/order/check-payment-status?apiKey=YOUR_API_KEY', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
        "hash": "sSO98YxzR4KJiOu66Jn6K3wRwa4FPI7S"
    })
})

Example Response

HTTP 200Success Response
{
  "redirectUrl": "example_redirectUrl"
}

🔑 API Key Required

All BizKitHub API endpoints require authentication using an API key. The API key must be passed as a GET parameter in the URL for all requests.

Back to API Documentation
Last updated: August 6, 2025