Empoweing blinds industry

Did You Know?

Introduction

Base URL

The base URL for accessing our API endpoints is: https://api.blinq.com.au.

Authentication

Our API endpoints require authentication using API keys. To obtain an API key, please contact our system administrator.

Response Format

All responses from our API are provided in JSON format.

Error Handling

In case of errors, our API returns appropriate HTTP status codes along with error messages in the response body.

Request Body Format
            
            {
                domain: "domain_of_the_endpoint",
                action: "endpoint",
                data: {
                    param_1: number_value,
                    param_2: "string_value"
                }
            }
            
        
Response Format
            
            {
                status: "success",
                message: "Linked fields retrieved successfully",
                data: {
                    "item_1":"vlaue",
                    "litem_2": [
                        "value_2_1",
                        "value_2_3",
                        "value_2_4"
                    ],
                    "item_3":{
                        "item_3_1":"value_3_1"
                    }
                }
            }
            
        
API END POINTS