Getting Started

This page will help you get started with DoiT Platform API

Welcome to DoiT Platform API!

API Keys

To get started, you'll need to extract your API key for the DoiT Platform. The key is available at https://app.doit.com/profile/api. To extract your key, you should have an active user in the DoiT Platform.

API Endpoints

The following endpoints are available for DoiT Platform API:

https://api.doit.com - the production version of the API

📘

Choosing the right endpoint

We recommend always using the production endpoint unless you're specifically looking for something not yet launched.

Your first request

After getting your API token, you can test it by making a request to the bare API Endpoint.

$ curl 'https://api.doit.com'
{
    "error": "Authorization field missing"
}

You need to properly authorize the API call. To do this, set Authorization header. The type of authorization method is Bearer. Working request will look like this:

$ curl --request GET \
     --url 'https://api.doit.com' \       
     --header 'Authorization: Bearer <YOUR TOKEN>' \
     --header 'Accept: application/json'

We are happy to support you!

Using new APIs can be challenging, hence we offer unlimited developer support to all our clients. To log a support ticket, please use https://support.doit.com, log in with your DoiT Platform account and select DoiT Platform as the Cloud Platform and CMP APIs as the Product.

2376

Logging Support Request for CMP API