Skip to main content
Solved

How can I download a file from a pipe thru API or make

  • February 24, 2024
  • 5 replies
  • 353 views

altairrosa
Forum|alt.badge.img

Hello!

Can somebody help me?

I’m using MAKE and need to download a file from a card.

Can somebody help me with an GraphQL command os some idea?

Thank you!

Best answer by marcosmelo

Hi, @altairrosa 

 

See if this article helps you

 

https://community.pipefy.com/api-76/how-to-get-pipe-and-cards-attachments-via-api-3237

 

5 replies

altairrosa
Forum|alt.badge.img
  • Author
  • Explorer
  • February 24, 2024

Do I need to have an enterprise plan?


marcosmelo
Forum|alt.badge.img+18
  • Legend
  • Answer
  • February 24, 2024

Lais Laudari

Hi @altairrosa!
Were you able to solve the issue with Marcos' tip?


altairrosa
Forum|alt.badge.img
  • Author
  • Explorer
  • March 10, 2024

Thank you all!


  • New Member
  • February 23, 2026

You can download a Pipefy card file via GraphQL. No Enterprise plan needed if your token has access.

Run this query with the card ID:

query {
card(id: "CARD_ID") {
attachments {
filename
url
}
}
}

Copy the returned url and use it in MAKE with an HTTP Get file request to download it.

Note. The file link can expire, so download it right away. If it fails, generate a fresh URL.