GET
/
v1
/
dimensions
cURL
curl --request GET \
  --url https://api.pelanor.io/v1/dimensions \
  --header 'Authorization: Bearer <token>'
{
  "dimensions": [
    {
      "coverage_ratio": 123,
      "created_at": "<string>",
      "created_by_email": "<string>",
      "description": "<string>",
      "dimension_unallocated": 123,
      "id": "<string>",
      "modified_at": "<string>",
      "name": "<string>",
      "rule": {
        "filtered_properties": [
          {
            "filters": [
              {
                "operator": "Equals",
                "property": {
                  "type": "Region"
                },
                "values": [
                  "<string>"
                ]
              }
            ],
            "property_id": "<string>"
          }
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

The response is of type object.