KitMaker uses conventional HTTP response codes to indicate the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, a resource was not found, etc.). Codes in the 5xx range indicate an error with KitMaker's servers.
When an error occurs, the body of the response will contain a JSON object with an error field describing the issue.
{
"error": "Unauthorized",
"message": "Missing API Key"
}You can always ping our servers to see the health of our servers:
curl -X 'GET' \
'https://func-kitmaker-api-external-dbbzfghudje4d4h4.westeurope-01.azurewebsites.net/api/health/ping' \
-H 'accept: text/plain'