/api/v1/shop/order/set-status

API endpoint documentation

post
Tags:order
Operation ID: postApiV1ShopOrderSet-status
Query Parameters
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

Body
orderIdstring
required
Example: "sSO98YxzR4KJiOu66Jn6K3wRwa4FPI7S"
statusCodestring
required
Example: "paid"
Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

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

Example Response

HTTP 200Success Response
{
  "success": true,
  "data": {
    "message": "Example response"
  }
}

🔑 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