Commonly used APIs

Get Needed Fields For Systems

POST https://integrator.dckap.com/api/get/system/dependencies

Retrieves the needed information for the given system. This endpoint helps in preparing the data for create credentials or use template requests.

Headers

Name
Type
Description

Authorization

string

Bearer {access_token}

Request Body

Name
Type
Description

systems

array

Array of System ID's

{
    "additional_data": {},
    "data": {
        "6028077815bea91ff66816c0": {
            "fields": [
                {
                    "@code": "username",
                    "label": "Username",
                    "required": "true",
                    "type": "text"
                },
                {
                    "@code": "password",
                    "label": "Password",
                    "required": "true",
                    "type": "text"
                }
            ],
            "show_hostname": true
        }
    },
    "error_code": "",
    "message": "Success",
    "status": 200,
    "success": true
}

Get All Timezones

GET https://integrator.dckap.com/api/get/all/timezones

Retrieves all the supported timezones in DCKAP Integrator.

Headers

Name
Type
Description

Authorization

string

Bearer {access_token}

Get User Groups

GET https://integrator.dckap.com/api/all/groups

Retrieves all the user groups of the account.

Headers

Name
Type
Description

Authorization

string

Bearer {access_token}

Last updated

Was this helpful?