Skip to content

Commit

Permalink
fix(community): Airtable url (#7532)
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardconstantin authored Jan 18, 2025
1 parent 904dcad commit e0e2fc9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export class AirtableLoader extends BaseDocumentLoader {
private async fetchRecords(
body: Record<string, any>
): Promise<AirtableResponse> {
const url = `${AirtableLoader.BASE_URL}/${this.baseId}/${this.tableId}`;
const url = `${AirtableLoader.BASE_URL}/${this.baseId}/${this.tableId}/listRecords`;
try {
const response = await fetch(url, {
method: "POST",
Expand Down

0 comments on commit e0e2fc9

Please sign in to comment.