{
  "info": {
    "name": "Axis Unified Inbox API — Inbox",
    "description": "# Axis Unified Inbox API\n\nInbox — 20 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 /inbox",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `viewAny` on `Inbox.Inbox`\n**Handler:** `Inbox\\InboxController@index`\n**Route name:** `inbox.index`"
      },
      "response": []
    },
    {
      "name": "POST /inbox",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `create` on `Inbox.Inbox`\n**Handler:** `Inbox\\InboxController@store`\n**Route name:** `inbox.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 /inbox/{inbox}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/:inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            ":inbox"
          ],
          "variable": [
            {
              "key": "inbox",
              "value": "",
              "description": "inbox identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `delete` on `inbox`\n**Handler:** `Inbox\\InboxController@destroy`\n**Route name:** `inbox.destroy`"
      },
      "response": []
    },
    {
      "name": "GET /inbox/{inbox}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/:inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            ":inbox"
          ],
          "variable": [
            {
              "key": "inbox",
              "value": "",
              "description": "inbox identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Inbox\\InboxController@show`\n**Route name:** `inbox.show`"
      },
      "response": []
    },
    {
      "name": "PUT /inbox/{inbox}",
      "request": {
        "method": "PUT",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/:inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            ":inbox"
          ],
          "variable": [
            {
              "key": "inbox",
              "value": "",
              "description": "inbox identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `update` on `inbox`\n**Handler:** `Inbox\\InboxController@update`\n**Route name:** `inbox.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 /inbox/{inbox}/edit",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/:inbox/edit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            ":inbox",
            "edit"
          ],
          "variable": [
            {
              "key": "inbox",
              "value": "",
              "description": "inbox identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `update` on `inbox`\n**Handler:** `Inbox\\InboxController@edit`\n**Route name:** `inbox.edit`"
      },
      "response": []
    },
    {
      "name": "GET /inbox/{slug}/{mode}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/:slug/:mode",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            ":slug",
            ":mode"
          ],
          "variable": [
            {
              "key": "slug",
              "value": "",
              "description": "slug identifier"
            },
            {
              "key": "mode",
              "value": "",
              "description": "mode identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Inbox\\InboxController@show`"
      },
      "response": []
    },
    {
      "name": "POST /inbox/ai-handover",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/ai-handover",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "ai-handover"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Inbox\\InboxController@aiHandover`\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": "PATCH /inbox/channelfacebooks/{id}/disconnect",
      "request": {
        "method": "PATCH",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/channelfacebooks/:id/disconnect",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "channelfacebooks",
            ":id",
            "disconnect"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Inbox\\InboxController@disconnectChannelFacebook`\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": "PATCH /inbox/channelinstagrams/{id}/disconnect",
      "request": {
        "method": "PATCH",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/channelinstagrams/:id/disconnect",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "channelinstagrams",
            ":id",
            "disconnect"
          ],
          "variable": [
            {
              "key": "id",
              "value": "",
              "description": "id identifier"
            }
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Handler:** `Inbox\\InboxController@disconnectChannelInstagram`\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 /inbox/comments",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "comments"
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `Inbox\\CommentsController@index`"
      },
      "response": []
    },
    {
      "name": "GET /inbox/comments/{postId}",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/comments/:postId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "comments",
            ":postId"
          ],
          "variable": [
            {
              "key": "postId",
              "value": "",
              "description": "postId identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `Inbox\\CommentsController@show`"
      },
      "response": []
    },
    {
      "name": "DELETE /inbox/comments/{postId}/{commentId}",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/comments/:postId/:commentId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "comments",
            ":postId",
            ":commentId"
          ],
          "variable": [
            {
              "key": "postId",
              "value": "",
              "description": "postId identifier"
            },
            {
              "key": "commentId",
              "value": "",
              "description": "commentId identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `Inbox\\CommentsController@destroy`"
      },
      "response": []
    },
    {
      "name": "POST /inbox/comments/{postId}/{commentId}/hide",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/comments/:postId/:commentId/hide",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "comments",
            ":postId",
            ":commentId",
            "hide"
          ],
          "variable": [
            {
              "key": "postId",
              "value": "",
              "description": "postId identifier"
            },
            {
              "key": "commentId",
              "value": "",
              "description": "commentId identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `Inbox\\CommentsController@hide`\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 /inbox/comments/{postId}/{commentId}/like",
      "request": {
        "method": "DELETE",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/comments/:postId/:commentId/like",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "comments",
            ":postId",
            ":commentId",
            "like"
          ],
          "variable": [
            {
              "key": "postId",
              "value": "",
              "description": "postId identifier"
            },
            {
              "key": "commentId",
              "value": "",
              "description": "commentId identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `Inbox\\CommentsController@unlike`"
      },
      "response": []
    },
    {
      "name": "POST /inbox/comments/{postId}/{commentId}/like",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/comments/:postId/:commentId/like",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "comments",
            ":postId",
            ":commentId",
            "like"
          ],
          "variable": [
            {
              "key": "postId",
              "value": "",
              "description": "postId identifier"
            },
            {
              "key": "commentId",
              "value": "",
              "description": "commentId identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `Inbox\\CommentsController@like`\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 /inbox/comments/{postId}/{commentId}/private-reply",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/comments/:postId/:commentId/private-reply",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "comments",
            ":postId",
            ":commentId",
            "private-reply"
          ],
          "variable": [
            {
              "key": "postId",
              "value": "",
              "description": "postId identifier"
            },
            {
              "key": "commentId",
              "value": "",
              "description": "commentId identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `Inbox\\CommentsController@privateReply`\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 /inbox/comments/{postId}/{commentId}/unhide",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/comments/:postId/:commentId/unhide",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "comments",
            ":postId",
            ":commentId",
            "unhide"
          ],
          "variable": [
            {
              "key": "postId",
              "value": "",
              "description": "postId identifier"
            },
            {
              "key": "commentId",
              "value": "",
              "description": "commentId identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `Inbox\\CommentsController@unhide`\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 /inbox/comments/{postId}/reply",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/comments/:postId/reply",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "comments",
            ":postId",
            "reply"
          ],
          "variable": [
            {
              "key": "postId",
              "value": "",
              "description": "postId identifier"
            }
          ]
        },
        "description": "**Authentication:** Optional JWT\n**Handler:** `Inbox\\CommentsController@reply`\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 /inbox/create",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/inbox/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "inbox",
            "create"
          ]
        },
        "description": "**Authentication:** JWT (user)\n**Required permissions:** `create` on `Inbox.Inbox`\n**Handler:** `Inbox\\InboxController@create`\n**Route name:** `inbox.create`"
      },
      "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"
    }
  ]
}