developer portal

Quickstart

From zero to your first valid response in four steps.

1. Prepare credentials

Create an API token in IntelliTracer under Config,Company, API tokens. Add one, give it a name, tick the privileges your integration needs, and save. The token belongs to the company rather than to a person, so it keeps working when someone leaves. Step by step, with screenshots of where things live: Getting credentials.

Send it as a bearer token. The examples below use the placeholder$GD_API_TOKEN; replace it with your own value, which starts withitr_pat_.

2. First request

Fetch the list of resource groups. This endpoint returns a small payload quickly and is a good sanity check.

first-request.sh
curl https://api.geodynamics.dev/intellitracer/v1/resourcegroups \
  -H "Authorization: Bearer $GD_API_TOKEN" \
  -H "Accept: application/json"

3. Verify the response

A successful call returns HTTP 200 and a JSON array of resource groups. Each object carries a stable Id, a Name, and optionally a Code.

jsonresponse.json
[
  {
    "Id": "a7c1f3b0-0e7c-4f1a-9d51-2b6f0a1e83cf",
    "Name": "Site crews",
    "Code": "WERF"
  },
  {
    "Id": "5d2a98e1-71a3-43b8-95ae-1f0c1c6e2d44",
    "Name": "Warehouse",
    "Code": "MAG"
  }
]

Got a different status code back? SeeErrors. The most common ones:

4. Build further