Health check

Health check#

Description#

Returns the status of the API WSGI servers

GET /health

Required OAuth Scopes

No OAuth scopes are required to use this endpoint.

Code Samples#

curl -X GET https://h.app.wdesk.com/s/wdata/prep/health \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer {access-token}'
http GET https://h.app.wdesk.com/s/wdata/prep/health \
    Accept:application/json \
    Authorization:"Bearer {access-token}"
wget --method=GET "https://h.app.wdesk.com/s/wdata/prep/health" \
    --output-document -  \ 
    --header 'Accept: application/json' \ 
    --header 'Authorization: Bearer {access-token}'
import requests

headers = {
  'Accept': 'application/json',
  'Authorization': 'Bearer {access-token}'
}

r = requests.get('https://h.app.wdesk.com/s/wdata/prep/health', headers = headers)

print(r.json())

Returns#

200 - OK#

The Health API endpoints provide methods to return status and debug information.

Example Responses#

{
  "body": {},
  "code": "integer"
}