Interface AirtableList

Represents the response structure when listing records from Airtable. This structure supports pagination through the optional offset property.

AirtableList

interface AirtableList {
    offset?: string;
    records: AirtableRecord[];
}

Properties

Properties

offset?: string

An optional token for pagination. If provided, it signifies more records are available. Use this token in subsequent requests to fetch the next page.

records: AirtableRecord[]

An array containing the Airtable records retrieved in the response.