Solved

Specific Database ID


Userlevel 2
  • New Participant
  • 0 replies

 

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?

icon

Best answer by tsartori 9 August 2021, 18:49

View original

2 replies

Userlevel 7
Badge +10

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! =)​​

Userlevel 7
Badge +4

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
 

 

Reply