Skip to content

Commit

Permalink
Fixed Airtable authentication (#2939)
Browse files Browse the repository at this point in the history
Updated to include API token in the "Authorization" request header as specified in https://airtable.com/developers/web/api/authentication.

Value must be prefixed with "Bearer ", e.g. "Bearer abcdefg".
  • Loading branch information
izon-dmitry authored Nov 9, 2023
1 parent 9a3e818 commit 47e9729
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,9 @@
"securityDefinitions": {
"API Key": {
"type": "apiKey",
"in": "query",
"name": "api_key"
"in": "header",
"name": "Authorization",
"description": "Generate a personal access token from https://airtable.com/create/tokens. Prefix your token with 'Bearer ', e.g. 'Bearer abcdefg'"
}
},
"security": [
Expand All @@ -418,4 +419,4 @@
"propertyValue": "Data"
}
]
}
}

0 comments on commit 47e9729

Please sign in to comment.