Solved

Get Public URL of Card via Python

  • 22 March 2022
  • 4 replies
  • 145 views

Userlevel 1

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.

icon

Best answer by Lucas Democh 23 March 2022, 03:51

View original

4 replies

Userlevel 6
Badge +5

Hi, @bhrzk1!

 

You can use this query:

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

 

Userlevel 1

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 

Userlevel 6
Badge +5

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

 

 

Userlevel 7
Badge +15

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.

 

 

 

Reply