{
  "info": {
    "name": "Axis Unified Inbox API — AI & Agents",
    "description": "# Axis Unified Inbox API\n\nAI & Agents — 47 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 /ai-model/authentication-token",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/ai-model/authentication-token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "ai-model",
            "authentication-token"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `AI\\GptController@getAuthenticationToken`"
      },
      "response": []
    },
    {
      "name": "POST /ai/escalate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/ai/escalate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "ai",
            "escalate"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\EscalationController@escalate`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "POST /continueconversationstream",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/continueconversationstream",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "continueconversationstream"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\AichatController@continueconversation`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /crawl-schedules",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/crawl-schedules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "crawl-schedules"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `viewAny` on `AI.CrawlSchedule`\n**Handler:** `AI\\CrawlScheduleController@index`\n**Route name:** `crawl-schedules.index`"
      },
      "response": []
    },
    {
      "name": "POST /crawl-schedules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/crawl-schedules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "crawl-schedules"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `create` on `AI.CrawlSchedule`\n**Handler:** `AI\\CrawlScheduleController@store`\n**Route name:** `crawl-schedules.store`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "DELETE /crawl-schedules/{crawl_schedule}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/crawl-schedules/:crawl_schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "crawl-schedules",
            ":crawl_schedule"
          ],
          "variable": [
            {
              "key": "crawl_schedule",
              "value": "",
              "description": "crawl_schedule identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `delete` on `crawlSchedule`\n**Handler:** `AI\\CrawlScheduleController@destroy`\n**Route name:** `crawl-schedules.destroy`"
      },
      "response": []
    },
    {
      "name": "GET /crawl-schedules/{crawl_schedule}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/crawl-schedules/:crawl_schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "crawl-schedules",
            ":crawl_schedule"
          ],
          "variable": [
            {
              "key": "crawl_schedule",
              "value": "",
              "description": "crawl_schedule identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `view` on `crawlSchedule`\n**Handler:** `AI\\CrawlScheduleController@show`\n**Route name:** `crawl-schedules.show`"
      },
      "response": []
    },
    {
      "name": "PUT /crawl-schedules/{crawl_schedule}",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/crawl-schedules/:crawl_schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "crawl-schedules",
            ":crawl_schedule"
          ],
          "variable": [
            {
              "key": "crawl_schedule",
              "value": "",
              "description": "crawl_schedule identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `update` on `crawlSchedule`\n**Handler:** `AI\\CrawlScheduleController@update`\n**Route name:** `crawl-schedules.update`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /crawl-schedules/{crawl_schedule}/edit",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/crawl-schedules/:crawl_schedule/edit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "crawl-schedules",
            ":crawl_schedule",
            "edit"
          ],
          "variable": [
            {
              "key": "crawl_schedule",
              "value": "",
              "description": "crawl_schedule identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `update` on `crawlSchedule`\n**Handler:** `AI\\CrawlScheduleController@edit`\n**Route name:** `crawl-schedules.edit`"
      },
      "response": []
    },
    {
      "name": "GET /crawl-schedules/create",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/crawl-schedules/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "crawl-schedules",
            "create"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `create` on `AI.CrawlSchedule`\n**Handler:** `AI\\CrawlScheduleController@create`\n**Route name:** `crawl-schedules.create`"
      },
      "response": []
    },
    {
      "name": "GET /datasources",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/datasources",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "datasources"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `viewAny` on `AI.DataSource`\n**Handler:** `AI\\DataSourceController@index`\n**Route name:** `datasources.index`"
      },
      "response": []
    },
    {
      "name": "POST /datasources",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/datasources",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "datasources"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `create` on `AI.DataSource`\n**Handler:** `AI\\DataSourceController@store`\n**Route name:** `datasources.store`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "DELETE /datasources/{datasource}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/datasources/:datasource",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "datasources",
            ":datasource"
          ],
          "variable": [
            {
              "key": "datasource",
              "value": "",
              "description": "datasource identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `AI\\DataSourceController@destroy`\n**Route name:** `datasources.destroy`"
      },
      "response": []
    },
    {
      "name": "GET /datasources/{datasource}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/datasources/:datasource",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "datasources",
            ":datasource"
          ],
          "variable": [
            {
              "key": "datasource",
              "value": "",
              "description": "datasource identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `AI\\DataSourceController@show`\n**Route name:** `datasources.show`"
      },
      "response": []
    },
    {
      "name": "PUT /datasources/{datasource}",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/datasources/:datasource",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "datasources",
            ":datasource"
          ],
          "variable": [
            {
              "key": "datasource",
              "value": "",
              "description": "datasource identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `AI\\DataSourceController@update`\n**Route name:** `datasources.update`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /datasources/{datasource}/edit",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/datasources/:datasource/edit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "datasources",
            ":datasource",
            "edit"
          ],
          "variable": [
            {
              "key": "datasource",
              "value": "",
              "description": "datasource identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `update` on `data_source`\n**Handler:** `AI\\DataSourceController@edit`\n**Route name:** `datasources.edit`"
      },
      "response": []
    },
    {
      "name": "DELETE /datasources/{page}/destroy-page",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/datasources/:page/destroy-page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "datasources",
            ":page",
            "destroy-page"
          ],
          "variable": [
            {
              "key": "page",
              "value": "",
              "description": "page identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `AI\\DataSourceController@destroyCrawledPage`"
      },
      "response": []
    },
    {
      "name": "GET /datasources/create",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/datasources/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "datasources",
            "create"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `create` on `AI.DataSource`\n**Handler:** `AI\\DataSourceController@create`\n**Route name:** `datasources.create`"
      },
      "response": []
    },
    {
      "name": "GET /datasources/recrawl/{page}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/datasources/recrawl/:page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "datasources",
            "recrawl",
            ":page"
          ],
          "variable": [
            {
              "key": "page",
              "value": "",
              "description": "page identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `AI\\DataSourceController@recrawl`"
      },
      "response": []
    },
    {
      "name": "POST /datasources/verify/site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/datasources/verify/site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "datasources",
            "verify",
            "site"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `AI\\DataSourceController@verifySite`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /getgptsuggestions/{assistant_id}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/getgptsuggestions/:assistant_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "getgptsuggestions",
            ":assistant_id"
          ],
          "variable": [
            {
              "key": "assistant_id",
              "value": "",
              "description": "assistant_id identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\AichatController@getgptsuggestions`"
      },
      "response": []
    },
    {
      "name": "GET /getthreadconversation/{client_user_id}/{assistant_id}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/getthreadconversation/:client_user_id/:assistant_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "getthreadconversation",
            ":client_user_id",
            ":assistant_id"
          ],
          "variable": [
            {
              "key": "client_user_id",
              "value": "",
              "description": "client_user_id identifier"
            },
            {
              "key": "assistant_id",
              "value": "",
              "description": "assistant_id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `AI\\AichatController@getthreadconversation`"
      },
      "response": []
    },
    {
      "name": "GET /getthreadhistory/{assistant_id}/{thread_id}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/getthreadhistory/:assistant_id/:thread_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "getthreadhistory",
            ":assistant_id",
            ":thread_id"
          ],
          "variable": [
            {
              "key": "assistant_id",
              "value": "",
              "description": "assistant_id identifier"
            },
            {
              "key": "thread_id",
              "value": "",
              "description": "thread_id identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\AichatController@getthreadhistory`"
      },
      "response": []
    },
    {
      "name": "GET /gpt",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Required permissions:** `viewAny` on `AI.Gpt`\n**Handler:** `AI\\GptController@index`\n**Route name:** `gpt.index`"
      },
      "response": []
    },
    {
      "name": "POST /gpt",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Required permissions:** `create` on `AI.Gpt`\n**Handler:** `AI\\GptController@store`\n**Route name:** `gpt.store`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "POST /gpt-widgets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt-widgets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt-widgets"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\GptWidgetController@store`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /gpt-widgets/{gpt_id}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt-widgets/:gpt_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt-widgets",
            ":gpt_id"
          ],
          "variable": [
            {
              "key": "gpt_id",
              "value": "",
              "description": "gpt_id identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\GptWidgetController@show`"
      },
      "response": []
    },
    {
      "name": "POST /gpt-widgets/{gpt_id}/check-installed",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt-widgets/:gpt_id/check-installed",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt-widgets",
            ":gpt_id",
            "check-installed"
          ],
          "variable": [
            {
              "key": "gpt_id",
              "value": "",
              "description": "gpt_id identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\GptWidgetController@checkInstalled`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "POST /gpt-widgets/{widget}/verify-site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt-widgets/:widget/verify-site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt-widgets",
            ":widget",
            "verify-site"
          ],
          "variable": [
            {
              "key": "widget",
              "value": "",
              "description": "widget identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\GptWidgetController@verifySite`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "DELETE /gpt/{gpt}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt/:gpt",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt",
            ":gpt"
          ],
          "variable": [
            {
              "key": "gpt",
              "value": "",
              "description": "gpt identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Required permissions:** `delete` on `gpt`\n**Handler:** `AI\\GptController@destroy`\n**Route name:** `gpt.destroy`"
      },
      "response": []
    },
    {
      "name": "GET /gpt/{gpt}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt/:gpt",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt",
            ":gpt"
          ],
          "variable": [
            {
              "key": "gpt",
              "value": "",
              "description": "gpt identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\GptController@show`\n**Route name:** `gpt.show`"
      },
      "response": []
    },
    {
      "name": "PUT /gpt/{gpt}",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt/:gpt",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt",
            ":gpt"
          ],
          "variable": [
            {
              "key": "gpt",
              "value": "",
              "description": "gpt identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Required permissions:** `update` on `gpt`\n**Handler:** `AI\\GptController@update`\n**Route name:** `gpt.update`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /gpt/{gpt}/edit",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt/:gpt/edit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt",
            ":gpt",
            "edit"
          ],
          "variable": [
            {
              "key": "gpt",
              "value": "",
              "description": "gpt identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Required permissions:** `update` on `gpt`\n**Handler:** `AI\\GptController@edit`\n**Route name:** `gpt.edit`"
      },
      "response": []
    },
    {
      "name": "GET /gpt/{id}/exists",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt/:id/exists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt",
            ":id",
            "exists"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\GptController@exists`"
      },
      "response": []
    },
    {
      "name": "POST /gpt/change-status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt/change-status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt",
            "change-status"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\GptController@change_status`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /gpt/create",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt",
            "create"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Required permissions:** `create` on `AI.Gpt`\n**Handler:** `AI\\GptController@create`\n**Route name:** `gpt.create`"
      },
      "response": []
    },
    {
      "name": "POST /gpt/recrawl",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt/recrawl",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt",
            "recrawl"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\GptController@recrawl`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "POST /gpt/schedule-deactivate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt/schedule-deactivate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt",
            "schedule-deactivate"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\GptController@scheduleDeactivate`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "POST /gpt/send-instructions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt/send-instructions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt",
            "send-instructions"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `AI\\GptController@sendInstructions`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "POST /gpt/sync",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/gpt/sync",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "gpt",
            "sync"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\GptController@sync`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "POST /startconversationstream",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/startconversationstream",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "startconversationstream"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\AichatController@startconversation`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "GET /suggestions",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/suggestions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "suggestions"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Required permissions:** `viewAny` on `AI.Suggestion`\n**Handler:** `AI\\SuggestionController@index`"
      },
      "response": []
    },
    {
      "name": "POST /suggestions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/suggestions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "suggestions"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Required permissions:** `create` on `AI.Suggestion`\n**Handler:** `AI\\SuggestionController@store`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "DELETE /suggestions/{suggestion}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/suggestions/:suggestion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "suggestions",
            ":suggestion"
          ],
          "variable": [
            {
              "key": "suggestion",
              "value": "",
              "description": "suggestion identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Required permissions:** `delete` on `suggestion`\n**Handler:** `AI\\SuggestionController@destroy`"
      },
      "response": []
    },
    {
      "name": "PUT /suggestions/{suggestion}",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/suggestions/:suggestion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "suggestions",
            ":suggestion"
          ],
          "variable": [
            {
              "key": "suggestion",
              "value": "",
              "description": "suggestion identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Required permissions:** `update` on `suggestion`\n**Handler:** `AI\\SuggestionController@update`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "response": []
    },
    {
      "name": "DELETE /suggestions/all/{gpt_widget_id}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/suggestions/all/:gpt_widget_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "suggestions",
            "all",
            ":gpt_widget_id"
          ],
          "variable": [
            {
              "key": "gpt_widget_id",
              "value": "",
              "description": "gpt_widget_id identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\SuggestionController@deleteAll`"
      },
      "response": []
    },
    {
      "name": "POST /trending-topics/{gpt}/analyze-sync",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/trending-topics/:gpt/analyze-sync",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "trending-topics",
            ":gpt",
            "analyze-sync"
          ],
          "variable": [
            {
              "key": "gpt",
              "value": "",
              "description": "gpt identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `AI\\GptController@trendingTopicsAnalyzeSync`\n\n> This endpoint accepts a body, but no `FormRequest` class backs it — validation happens\n> inline in the controller, so the fields could not be derived automatically. An empty JSON\n> body is provided as a starting point.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      },
      "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"
    }
  ]
}