Quick Start

Get an access token

To obtain an access token, you need to go to the system administration in the API section https://admin.workzeal.com/settings-api

Please note: you must have access rights to the API section. Each generated token is stored in a special registry. If something goes wrong, you can disable the token at any time, and all traffic using it will be stopped.

Authorization method

Bearer Token ⚡️ Content-Type : application/json

--header 'Authorization: Bearer XXXXXXX.XXXXXXXX.XXXXXXX'

First request and first response

Please note: you can use PostMan or another API tool that is convenient for you to test requests.

Let's get a Welcome response! ⚡️This request must contain an authorization token

Welcome!

GET https://do.workzeal.com/welcome/first

Headers

Name
Type
Description

Content-Type

String

application/json

Authorization*

String

Bearer XXXXX.XXXXX.XXXXX

{
    "status": "success",
    "error": null,
    "code": null,
    "rows": 1,
    "pages": 1,
    "page": 1,
    "value": "Welcome! And let's continue: https://apidoc.workzeal.com/"
}
curl --location --request GET 'https://do.workzeal.com/welcome/first' \
--header 'Authorization: Bearer XXXXXXX.XXXXXXX.XXXXXX'

An object of answer


{
    "status": "success",
    "error": null,
    "code": null,
    "rows": 1,
    "pages": 1,
    "page": 1,
    "value": "Welcome! And let's continue: https://apidoc.workzeal.com/"
}

// status - execution status [success] [error]
// error - error text, if any
// code - error code, if any
// rows - number of rows
// pages - number of pages
// page - current page
// value - requested data, usually in JSON format

Last updated