Integration Pipefy

  • 8 December 2023
  • 3 replies
  • 52 views

Userlevel 1
Badge

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-nykael 4 months ago

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
    }
  }
}

View original

3 replies

Userlevel 6
Badge +1

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
    }
  }
}

Userlevel 7
Badge +13

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

Userlevel 1
Badge

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

Reply