{
  "info": {
    "name": "Axis Unified Inbox API — Dashboard",
    "description": "# Axis Unified Inbox API\n\nDashboard — 2 endpoints, generated from the Laravel route table on Tue, 04 Aug 2026 12:47:23 GMT.\n\n## Getting started\n\n1. Set the `baseUrl` collection variable if you are not using the default.\n2. Run **Authentication → `POST /user/login`** with your email and password.\n   A test script stores the returned JWT into `{{access_token}}` automatically.\n3. Every other request inherits that bearer token — just hit Send.\n\nRequests using an API key instead read `{{api_key}}` or `{{engage_key}}`; set those\nvariables if you need them.\n\n## Variables\n\n| Variable | Purpose |\n| --- | --- |\n| `baseUrl` | API host, e.g. `https://api.axis.im` |\n| `access_token` | JWT bearer token (auto-filled by the login request) |\n| `api_key` | Value for the `X-API-KEY` header |\n| `engage_key` | Value for the `X-Axis-Admin-API-Key` header |",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "axis-api-docs"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{access_token}}",
        "type": "string"
      }
    ]
  },
  "item": [
    {
      "name": "GET /admin/dashboard/{startdate}/{enddate}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/admin/dashboard/:startdate/:enddate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "admin",
            "dashboard",
            ":startdate",
            ":enddate"
          ],
          "variable": [
            {
              "key": "startdate",
              "value": "",
              "description": "startdate identifier"
            },
            {
              "key": "enddate",
              "value": "",
              "description": "enddate identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Dashboard\\DashboardController@index`"
      },
      "response": []
    },
    {
      "name": "GET /user/dashboard",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/user/dashboard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "user",
            "dashboard"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Dashboard\\DashboardController@userDashboard`"
      },
      "response": []
    }
  ],
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.axis.im",
      "type": "string"
    },
    {
      "key": "access_token",
      "value": "",
      "type": "string"
    },
    {
      "key": "api_key",
      "value": "",
      "type": "string"
    },
    {
      "key": "engage_key",
      "value": "",
      "type": "string"
    }
  ]
}