Skip to main content
Solved

Get Public URL of Card via Python

  • March 22, 2022
  • 5 replies
  • 431 views

bhrzk1

Hi all, 

I’m trying to do an automation integration with python and Pipefy. So far I create a card and get its information. Right now I’m trying to get its public url. I have looked the whole documentation but couldn’t find anything. 

Do you have any idea how I can get it? 

Thanks.

Best answer by Lucas Democh

You get all the data from the public link with the code below:

{
pipe (id: 301598209) {
id
name
publicForm {
active
afterSubmitMessage
backgroundColor
backgroundImage
brandColor
canHidePipefyLogo
description
displayPipefyLogo
logo
organizationName
reuseLastSubmissionResponse
showSubmitAnotherResponseButton
submitButtonText
submitterEmailCollectionEnabled
submitterEmailCollectionMethod
title
url
}
}}

The public link for the current phase is not yet available via API.

 

 

 

5 replies

alicereis
Forum|alt.badge.img+5
  • Inspiring
  • March 22, 2022

Hi, @bhrzk1!

 

You can use this query:

{
card (id:"498937947") {
url
}
}

 


bhrzk1
  • Author
  • New Member
  • March 22, 2022

Hi, @bhrzk1!

 

You can use this query:

{
card (id:"498937947") {
url
}
}

 

Thanks for the answer but it only returns the URL of the card not the same as share url 


alicereis
Forum|alt.badge.img+5
  • Inspiring
  • March 22, 2022

Do you say the URL for creating new cards? Would it be the ‘publicForm’ parameter?

 

 


Lucas Democh
Forum|alt.badge.img+15
  • Legend
  • Answer
  • March 23, 2022

You get all the data from the public link with the code below:

{
pipe (id: 301598209) {
id
name
publicForm {
active
afterSubmitMessage
backgroundColor
backgroundImage
brandColor
canHidePipefyLogo
description
displayPipefyLogo
logo
organizationName
reuseLastSubmissionResponse
showSubmitAnotherResponseButton
submitButtonText
submitterEmailCollectionEnabled
submitterEmailCollectionMethod
title
url
}
}}

The public link for the current phase is not yet available via API.

 

 

 


Forum|alt.badge.img

Is this possible today?