Patch Airtable from scriptable

Anyone knows how do I update a specific data in a Airtable database from Scriptable?

O was already able to get the registers using the following code, but I couldn’t make it patch it

let at = "https://api.airtable.com/v0/appg...../api_key=API_Key"

let req = new Request(at)
let corpo = await req.loadJSON()
let records = corpo.records
var l2 = []
for (i in records) {
  l2.push( {
  clube: records[i].fields.Clube.trimEnd(),
  id: records[i].fields.id,
  feito: records[i].fields.Feito
}
  )
}