### GET /tasks/board Source: https://ajuda.customerx.com.br/pt-br/articles/104-webhooks-do-customerx Retrieves details of a task from the task board, including scheduling dates, user assignments, and filing status. ```APIDOC ## GET /tasks/board ### Description Retrieves a task object from the task board management system. ### Method GET ### Endpoint /tasks/board/:id ### Response #### Success Response (200) - **id** (integer) - Internal task ID - **title** (string) - Task title - **is_filed** (boolean) - Whether the task is archived - **user** (object) - Assigned user details #### Response Example { "id": 2126, "title": "Exemplo", "is_filed": false, "user": { "name": "João Exemplo", "email": "joao@exemplo.com" } } ``` -------------------------------- ### GET /tasks/journey Source: https://ajuda.customerx.com.br/pt-br/articles/104-webhooks-do-customerx Retrieves details of a specific task within a customer journey, including associated client, user, and journey metadata. ```APIDOC ## GET /tasks/journey ### Description Retrieves a task object associated with a customer journey. ### Method GET ### Endpoint /tasks/journey/:id ### Response #### Success Response (200) - **id** (integer) - Internal task ID - **title** (string) - Task title - **status** (boolean) - Task completion status - **client** (object) - Associated client data - **user** (object) - Associated user data - **journey** (object) - Journey metadata #### Response Example { "id": 19604, "title": "Título Exemplo", "status": true, "client": { "company_name": "Exemplo razão social" } } ``` -------------------------------- ### Instalar o Script Principal do Widget Source: https://ajuda.customerx.com.br/pt-br/articles/84-como-configurar-o-widget-de-pesquisas-do-customerx Adiciona o carregador assíncrono do widget ao cabeçalho da página. Deve ser inserido antes do fechamento da tag para garantir o carregamento correto. ```html ```