Solved

pipe_id webhook

  • 29 January 2024
  • 4 replies
  • 54 views

Userlevel 3
Badge
{  "data": {    "action": "card.move",    "from": {      "id": 318037803,      "name": "VENDAS A LANÇAR"    },    "to": {      "id": 318037801,      "name": "VENDA LANÇADA"    },    "moved_by": {      "id": 301427266,      "name": "Maycon Alves",      "username": "mayconalves",      "email": "maycon@lazertur.com.br",      "avatar_url": "https://app.pipefy.com/storage/v1/signed/avatar/store/user/301427266/avatar/small-8a31ab1a423992bb8cabb7194b7c3aac.png?expires_on=1706537387&signature=7uSWFoHtuF4H9RW9wmVCKzfmicWM0nKBSMTYs%2Fm3LhU%3D"    },    "card": {      "id": 865869530,      "title": "Andrezza Silva Neto",      "pipe_id": "S5QmlXq3"    }  }}

 

The webhook returns the following information, but I wanted to receive the pipe_id number and not this string "pipe_id": "S5QmlXq3"

icon

Best answer by Roberto Chavarria 29 January 2024, 19:06

View original

4 replies

Userlevel 7
Badge +5

Hi @tech-lazertur  how are u? 

 

Our technical team will check your question as soon as possible, ok? 

Thank you.

 

Best regards,

Userlevel 6
Badge +5

Hi there! This id represents the alphanumerical unique ID of the pipe (suid). You can use this SUID in  a graphql query to get more information about that pipe, including it’s numerical ID, like this:

{   pipe(id:"vJL6poT1"){     name     suid     id   } }

You can read more details regarding pipes and other APIs here

https://developers.pipefy.com/reference/pipes 

Userlevel 2

Hi @tech-lazertur,
It's exactly like @Roberto Chavarria´s answer, the default answer that will come up in Webhooks for Pipe_id is SUID, which is unique, and which can also be used normally to search for Pipe data via API.

 

Here are all the more examples of possible answers from Webhook.
https://developers.pipefy.com/reference/pipe-table-webhooks

Userlevel 3
Badge

thanks

Reply