Skip to main content
featured-image
featured-image
featured-image

📢 New feature | Easily delegate and execute tasks!

Hello, everyone. I hope you're all doing well. Today, we are releasing two important improvements in Pipefy: Task area: where guests, agents, and admins can check and solve their pending actions (tasks) Task assignment flow: allow agents and admins to assign a pending action to other users   First of all, what is a Task?A task is a pending action in the process that prevents a card from advancing without completion, requiring an external intervention to solve it. Some task examples:Manager approving a vacation request Employee filling in pending information to unblock a request Candidate sending pending documents for admissionThe task area makes it easier for the user to find and act on their pending demands, no need to look in different emails or pipes for the link to access a pendency (phase form) anymore.  How does it work? Previous behavior: the user had to check their email to access the phase form to solve it. If the user receives many phase forms (tasks) a day, there will be multiple emails to check that can get lost in the inbox. New behavior: the user has an exclusive area to interact with their tasks within Pipefy. All the tasks from the same organization will appear in this area, eliminating the need to search for multiple emails to find new tasks. In one click, they find everything they need!Mobile app update: new home tab “My Tasks Area” with pagination, enabling the user to see details about the tasks and complete them successfully without accessing a computer. We are eager to have you use the feature and give feedback. Please feel free to reach us! Thank you,Priscila Rodrigues

featured-image
featured-image
featured-image
featured-image
featured-image
featured-image

🔗 Get the Public Phase Form link from the Public API to integrate with external tools

Hello everyone 👋🏻 I’m excited to announce that now you can get the Public Phase Form link and use that to integrate with other tools, using our API! 🆕 What’s new? We have now a new mutation, called configurePublicPhaseFormLink , you need to pass the cardID and: You will be able to define if the link is enabled or not enabled; You will be able to get the link itself.  💎 Why is it valuable? With this new mutation, you can set a deadline for a Phase Form to be available, and after that specific time/rule, the link will be deactivated. This can be done, using an integration with Workato, for example: This is very important for the procurement process, for example, where suppliers have a certain deadline to send proposals, with that they can ensure everyone has the same deadline; Important for the HR process as well, where HR recruiters can define a specific deadline to get documents, or results from a test; Or any other process where a deadline is required! You can also get the link of the phase form and post anywhere using any automation tool you would like, for example, sending the link through WhatsApp, Teams, Slack, etc Or even integrate with internal tools, pages, etc! 🚀  📚 Learn moreSee our API documentation.If you are using the Public Phase Form link and have any feedback for us, please, comment on this post. We would love to hear your thoughts! 😊 Kind Regards,Danielle Diehl 

featured-image
featured-image
featured-image
featured-image
featured-image

🔦 Nova solução de relatórios por API disponível!

Olá, Comunidade Pipefy, Temos uma ótima notícia: agora, você pode integrar o Pipefy com sua ferramenta de relatórios, como PowerBI ou DataStudio, por meio de API! Veja como: Com Relatórios, você pode filtrar dados dos seus processos em tempo real, organizá-los em colunas e exportá-los em formato de uma planilha de Excel para analisar as informações que deseja. Se sua equipe precisa exportar relatórios com frequência e em um determinado período de tempo, você pode automatizar esse processo! Configure uma rotina de API Scheduler para automatizar a extração do relatório utilizando uma mutation. O relatório será exportado no período de tempo que você determinar no seu scheduler. Para fazer a extração do relatório são necessárias duas chamadas, a primeira é uma mutation que obterá na resposta um ID para ser utilizado na extração, e a segunda, é uma query, que utilizará a resposta obtida na primeira para obter a URL de download do relatório. A chamada inicial é como segue, nela devem ser informados o ID do Pipe onde o relatório está salvo e o ID do relatório já formatado com todas as colunas e filtros que deseja visualizar na planilha extraída. Ambos os IDs podem ser obtidos na URL da página.  mutation {   exportPipeReport(input: { pipeId: 1, pipeReportId: 1}) {     pipeReportExport {       id     }   } }  A resposta desta chamada conterá um ID numérico. Utilizando desse ID obtido na chamada anterior, você poderá rodar a seguinte query:  {   pipeReportExport(id: 20) {     fileURL     state     startedAt     requestedBy {       id     }   } }  A resposta da chamada conterá a URL (fileURL) que você pode acessar para fazer o download do relatório, na sua plataforma de integração. É importante ressaltar que a construção do relatório para exportação pode demorar um pouco dependendo do volume de informações. Fique atento e, se necessário, deixe um período de tempo para o download. No momento que o relatório estiver formatado para a exportação a informação “state” deve retornar como “done”. Tudo feito, basta fazer a carga em sua ferramenta de BI ou enviar para algum email como anexo!Atualização!Rate LimitsEssa feature possui Rate Limits, uma técnica comum para garantir segurança, confiabilidade e uma experiência consistente ao desenvolvedor, limitando o número de solicitações em um intervalo de tempo.Para exportação de relatórios via API, o rate limit é de 25 solicitações em 24 horas, para cada pipe.Caso atinga esse limite, deve-se aguardar 24 horas a partir do momento em que a última solicitação foi feita. Qualquer solicitação nesse intervalo de tempo não será processada e conterá uma mensagem de rate limit atingido exibida em "erros" no payload de resposta.

featured-image
featured-image
featured-image
featured-image
featured-image
featured-image
featured-image
featured-image
featured-image