Set request method

The HTTP request method determines what action your API request will perform. Different methods serve different purposes: GET requests retrieve data from an API to import into Airtable, while POST requests send data from Airtable to an external API.

Your API's documentation will specify which method to use for each endpoint. You can also learn more about HTTP request methods in general here.

How to set the request method

  1. On the custom request screen, locate the Method dropdown (to the left of the URL input field).

  2. Click the dropdown to see available methods.

  3. Select the method you need for your specific API endpoint.

Common request methods

Here are the most frequently used HTTP methods and their typical purposes:

  • GET - Retrieve data from the API (most common for importing data into Airtable)

  • POST - Send new data to the API (creating new records or resources)

  • PUT - Update or replace existing data on the API

  • PATCH - Partially update existing data on the API

  • DELETE - Remove data from the API

  • HEAD - Check if a resource exists or get metadata without downloading the full response

The method you choose should match what your API endpoint expects and what action you want to perform.

Last updated