Skip to main content
Solved

Specific Database ID

  • May 6, 2021
  • 2 replies
  • 333 views

Ana

 

Helo!

I am trying to build an API that imports my data from databases, but I would like to import only the specific database and not all of them.

How do I find IDs?

Best answer by tsartori

Helloo, its the number on the URL, or you can run the querry at the https://api.pipefy.com/graphql:


{table(id:"***********"){
table_records{
edges{
node{
id
title
}
}
}
}
}

If you need something else just text.

Hope I help
 

 

2 replies

Nicole Chiroli
Pipefy Staff
Forum|alt.badge.img+10
  • Product Manager
  • 301 replies
  • May 7, 2021

Hello Ana, how are you doing today?


You need the record’s IDs? 

You can have an ID field and/or also check it in the record’s URL:


Or with API something like this:

{table(id:"xxx"){
 table_records{
  edges{
    node{
      id
      title
    }
  }
}
}
}

If that’s not exactly it, please let me know! =)​​


tsartori
Forum|alt.badge.img+4
  • Superuser
  • 157 replies
  • Answer
  • August 9, 2021

Helloo, its the number on the URL, or you can run the querry at the https://api.pipefy.com/graphql:


{table(id:"***********"){
table_records{
edges{
node{
id
title
}
}
}
}
}

If you need something else just text.

Hope I help