{"name":"OrkaTV API","description":"\nThis is the API documentation for OrkaTV's resource management system. It includes endpoints for user authentication and company resource operations.\n\n## Authentication\n\nThe OrkaTV API uses JWT (JSON Web Tokens) for managing user sessions. The following authentication operations are supported:\n\n### Login\n\nAllows users to authenticate by providing valid credentials. Upon successful authentication, users receive a JWT token which must be used for authorization in subsequent requests.\n\n* **Path**: `/login`\n* **Method**: `POST`\n* **Payload**: Includes `email` and `password`.\n* **Returns**: A JWT token upon successful login.\n\n### Logout\n\nAllows users to end their session. This will invalidate their current JWT token.\n\n* **Path**: `/logout`\n* **Method**: `POST`\n* **Authorization required**: Yes (Bearer token).\n* **Returns**: A confirmation message upon successful logout.\n\n### Read Current User Profile\n\nAllows the authenticated user to retrieve their profile information based on the provided JWT token.\n\n* **Path**: `/me`\n* **Method**: `GET`\n* **Authorization required**: Yes (Bearer token).\n* **Returns**: The authenticated user's profile information.\n","status":"OK"}