DocsInteractive API Docs/api/v1/shop/order/check-payment-status
post

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

API endpoint documentation

Endpoint Info
Base URLapi.bizkithub.com
AuthBearer Token
Methods1
Authentication Required

This endpoint requires a valid API key passed as a query parameter or Bearer token.

Get your API key

Parameters

1 body parameter

hashstringrequired

Example Request

JavaScript fetch

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

const data = await response.json();
console.log(data);
post

Example Response

200Success
{
  "redirectUrl": "example_redirectUrl"
}

cURL

Command line example

curl -X POST "https://api.bizkithub.com/api/v1/shop/order/check-payment-status" \
  -H "Content-Type: application/json" \
  -d '{
  "hash": "sSO98YxzR4KJiOu66Jn6K3wRwa4FPI7S"
}'

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key