Authentication

In order to start working with the Cost API, you first need to perform three steps.

  1. Get the Authentication token
  2. Call the USERS API to get the account and division IDs
  3. Form the account-api-key by combining the token from step 1 with the account and division from step 2.

1. Getting the Token

The following call will enable you to get an authentication token for the subsequent API calls. The token is valid for 24 hours.

You can either use basic authentication (recommended) or send the parameters in the body.

curl --location --request POST 'https://tokenizer.mypileus.io/prod/credentials' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "[email protected]",
    "password": "thisismypassword"
}'


2. Getting the account and division

After calling the Authentication, you will need to call the Get Users. From the users API response you will get an array of accounts (See example below)

[
  {
    "accounts": [
        {
            "accountKey":"{{accountkey}}",
            "accountId": "1234567",
            "accountTypeId": 1,
            "accountName": "umbrella",
            "cloudTypeId": 0,
            "userKey": "{{user-key}}",
            "firstProcessTime": "2020-09-22T12:00:00.000Z",
            "lastProcessTime": "2022-06-30T12:00:00.000Z",
            "divisionId": "{{divisionId}}",
            "divisionsIds": [
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0
            ]
        }
  }
]


3. Forming the API Key

Choose the accountkey which is relevant for the subsequent API calls and the divisionID.

Then - replace the '-1' at the end of the API key you got with accountKey:divisionId

Example: API key from step 1: c6249e30e-cf36-4957-a41a-d08fbafa5093:-1

Will be changed to: c6249e30e-cf36-4957-a41a-d08fbafa5093:accountKey:divisionId

In the following calls, we refer to this new string as account-api-key

Language
Click Try It! to start a request and see the response here!