Pipefy, recognized as one of the Market Shapers by Gartner®
Have a question? Bring it here and get help from other users and the Pipefy team.
Recently active
Hello, all.I'm trying to get all cards from a pipe consuming the GraphQL API with Python.Everything was working until I had to use pagination to get more than 50 cards.Below, the code that is returning errors:url = ""https://api.pipefy.com/graphql""payload = ""{\""query\"": \""{ allCards(pipeId: XXXXXX, first: 50, after: \""WyIwLjYyNSIsIjIyOS4wIiw1MzExMzQ5M10=\"") { edges { node { id title phases_history { phase { name } firstTimeIn lastTimeOut } } cursor } pageInfo { endCursor hasNextPage } } }\""}""headers = {'Content-Type': 'application/json','Authorization': 'Bearer <MY-AUTH-KEY>'}response = requests.request(""POST"", url, data=payload, headers=headers)response_body = response.textprint(response_body)Below, the error that returns:{""errors"":[{""message"":""Error parsing GraphQL request: error decoding JSON. This likely means that the GraphQL request was malformatted.: invalid character 'W' after object key:value pair""}]}If I just remove the, after: \""WyIwLjYyNSIsIjIyOS4wIi
Hello Guys, hope you are doing well and safe! Does anyone know how I can create an Automation to automatically update Due Date field on Top buttons preferences instead of creating a Due Date field in my card?
Hello, I was wondering how I can trigger a notification through the app (Pipefy SDK) when there is an error on the current page. Alternatively is there away to include the SDK into a lambda function?
Hi, I am testing pipefy webhooks, but I have created two webhhooks for the same endpoint and I would like to remove one of them.
I have a Long text field in a parent card that should be updated with the Long text values from various connected child cards. Each update should show. In other words: Parent card Comment field: Updated comments 1 from Child card #1 Updated comments 1 from Child card #2 Updated comments 1 from Child card #3 What is the API call to update & append a field?
Hi @Lucas Pimenta I'm having an issue installing your UIPath x Pipefy cpnnector. I keep getting the message "The file is not a valid nupkg file"I'm adding it in uipath studio community 2020.6.0 Can you assist please? ThanksJaco
Hi Guys, Hope you are all well and safe! Does anyone know if it is possible filled automatically up Assinee field as soon as the user touch a new card? Cheers!
Hi friends, When a card revisits a phase, Pipefy, instead of showing previous phase selections (history) as if they are current selections (most current visit selection), previous selections should be stored in history of the card, which would serve data security concern. Now when we purposefully want a card to revisit a phase several times, we have to clear previous visit selections which defies other benefits. Is this expected behaviour? Just a feedback. Every visit of a phase by a card should start with fresh fields,and any previous visit field selections should be stored in history of the card.
Hey guys, I am starting with GraphiQL and trying to create a query for inviteMembers for an organization, however, I am not being able to identify what is wrong here. Could you please clarify?mutation {inviteMembers(input: {emails: {"teste@teste.com"},organization_id: "124779",message: "please join my organization"}) {clientMutationId}}---- Error{"errors": [{"locations": [{"column": 14,"line": 19}],"message": "extraneous input '\"teste@teste.com\"' expecting {'}', 'fragment', 'query', 'mutation', 'subscription', 'schema', 'scalar', 'go_type', 'interface', 'implements', 'enum', 'union', 'input', 'extend', 'directive', NAME}"}]}Thanks
I can send file thru S3 using the signed option, and also download back the same file. But, what tha purpose of this method, because I can't connect a file to database and card neither. What the objective to have a s3 object associated with my organization? Just to create markdown links to images or documents? I need to use the API to send to card file attachments. That option would work flawlessly.
I built a python code to connect Pipefy to PowerBI, and achieved the result of a general exported report through a cards query, gathering all field data. But, connection fields only return their title in a similar fashion to “[connected_card_title]”. Searching the API documentation I found reference to:CardField values information, connectedRepoItems queryWhich I thought would be the solution to gather connected field data. Still, it only added to the field object the following:{'connectedRepoItems': [{}], 'name': '...', 'value': '...'}It can identify, correctly, which fields are connections, returning [{}], and which fields aren’t returning ‘None’. However, there is no information attached that could lead me to the connected card or register data. Is there a way to directly gather data from a connected field, or will I need to pull data from all pipefy sources and compare titles to achieve it? The problem of the latter is pipe connections where it’s possible to have cards with
Hi. How do I update a connected parent card with the attachment from within the connected child card? Is there an API call for that?
I would like to obtain more information on how to set up chat bots in Pipefy, can someone help me on this topic?
I am starting to design our proccess on Pipefy starting by Incident Management proccess. Did someone here tried to run IT proccess on Pipefy instead of traditional Service Desk tools like Jira, Spiceworks or HP Service Manager? What would be your success rate to run IT proccess on Pipefy?
Helo! I need a help. I want to know if it's posible to personalize an automated e-mail respose, which is sent by Pipefy, after a public form was answered succesfuly. I couldn't find where, or how to edit this automated response.
Does anyone use salesforce servicecloud with pipefy?
What is the possibility of pre-upload files, so they are available under cards as attachments and are downloaded as needed NOTE: Templates contain macros that allow data upload to Client’s ERP
Hi community I'm trying to create a card in my pipe, but it only shows the error message ""query not found"":{""mutation"":""{ createCard( input:{ pipe_id:ID phase_id:ID title:'Test' fields_attributes:[ field_id:ID field_value:VALUE ]} ) { card { id title } } }""}Response: { ""errors"": [ { ""message"": ""query not found"" } ] }
What are the requirements, if any, for using a database connection field in a form that will be used in a portal. Please note that we have no use for general public forms on the web. All our forms will be completed by internal employees.
Hi everyone, Which is the best site to see all emojis that you can use in Pipefy? thanks!
I'm trying to send a long string over the API. However, I cannot find out how to properly format/encode the string in order for Pipefy to simply add the text to the database record. Here's how I'm building the query: return `mutation { createTableRecord(input: { table_id: "**", fields_attributes: [ {field_id: "what", field_value: "${data.firstName}"}, {field_id: "nom", field_value: "${data.lastName}"}, {field_id: "email", field_value: "${data.Email}"}, {field_id: "cellulaire", field_value: "${data.Phone}"}, {field_id: "site_web", field_value: "${data.formRef}"}, {field_id: "message_soumis", field_value: "${data.Message}"},Here, data.Message has a long text in which there are newlines. This breaks it all:400 - {"errors":[{"locations":[{"column":51,"line":10}],"message":"token recognition error at: '\"Monsieur,\n'"} There are tens of such lines. How should I format/encode the text so it is added and properly formatted in the Pipefy DB record?
Hi, I would like to do an API call to return all the fields in a pipe and and the phase where each of them are. I have the call that just lists all the fields, but not which phase they are in
Good Afternoon everyone. Does anyone know if it is possible to get api logs?
Hi team, we are working with a project which the cards will be created by email, we were planning to redirect all emails from the generic mailbox to pipefy email address, but now they are saying that the forwarding rules are not allowed as per their global security policies. Do you know of a different process on how to create cards from Generic mailboxes?
Hello! I'm trying to register a webhook, but I can’t do it. And I’m not finding anything about permissions and webhooks.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.