API Status¶
Ok, let’s be honest. Unfortunately, problems may occur once in a while. So, we provide a simple solution to indicate whether we’re having problems with our API. It can help you to determine the problem in case of multiple failed attemps to request an inquiry.
Check the API status¶
To check the API status, make a GET request to the https://inquiry.creditandcollection.nl/api/status endpoint.
HTTP Request¶
GET https://inquiry.creditandcollection.nl/api/status
Example¶
curl \
--user username:password \
'https://inquiry.creditandcollection.nl/api/status'
Response¶
See StatusResponse schema for more information about the response format.
{
"ok": true
}
Schemas¶
The following schemas represent the formats of the HTTP responses, returned by the API, which are described on this page.
StatusResponse¶
▸ ok (boolean)
Status indicater
true = API is OK!
false = API is not OK!