Help

Fetch a single record using Visual Basic .NET code

Topic Labels: API
2764 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Jonathan_Godney
5 - Automation Enthusiast
5 - Automation Enthusiast

Dear Community
Your help would be very much appreciated if you knew how to fetch one record from my table in Visual Basic Script VB.net code, could you help?
Jonathan

P.S.
Here is the equivalent of what I want to do using the curl utility:
curl.exe https://api.airtable.com/v0/app6hDo2mwb2dVccO/letting-agent-details/recly4jCvMGGMYbyu -H “Authorization: Bearer YOUR_API_KEY”

Here is the equivalent of what I want to do using node.js:
var Airtable = require(‘airtable’);
var base = new Airtable({apiKey: ‘YOUR_API_KEY’}).base(‘app6hDo2mwb2dVccO’);
base(‘letting-agent-details’).find(‘recly4jCvMGGMYbyu’, function(err, record) {
if (err) { console.error(err); return; }
console.log(record); });

0 Replies 0