POST /api/public/helpdesk/messagesAuthorization: Bearer {token}Content-Type: application/json{ "Subject": "Wi-Fi not working", "MessageText": "The Wi-Fi on the 2nd floor has been down since this morning.", "DepartmentId": 3}
import endpoints from '@/api/endpoints'await httpClient.post(endpoints.helpDesk.create, { Subject: 'Wi-Fi not working', MessageText: 'The Wi-Fi on the 2nd floor has been down since this morning.', DepartmentId: 3,})