Skip to main content

Integration Pipefy

  • 8 December 2023
  • 3 replies
  • 90 views

Hello, my name is Davi Prado, I'm new here.
I need help. How to create an integration using an external API to create new cads within pipefy, using data from the external API.

Antonio, thank you very much for your quick response to my request.

I attached a printout of the external API, which is a tool we use in Brazil to find bidding notices called Effecti. I need each information found in Effecti to be automatically registered in a Card in pipefy. Therefore, I am unsure how to link this external API to the Pipefy API. Could you guide me on how to do this step-by-step? Thank you in advance for your attention and help!

Note: This is the API library link https://mdw.minha.effecti.com.br/api-integracao/swagger#/Encontrar/getAllNoticesByDate


👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍


Hello @daviprado15 ,
Welcome.

I use and recommend Make (https://www.make.com)

Tell us your needs, and we will try to help.

 

You can use this module:

 

 

or make an API call:

 

mutation {
  createCard(input: {
    pipe_id: 123,
    title: "New card",
    fields_attributes:_
      {field_id: "field_1", field_value: "Value 1"},
      {field_id: "field_2", field_value: "Value 2"}
    ]}
  ) {
    card {
      title
    }
  }
}


Reply