{ "opencollection": "1.0.0", "info": { "name": "Airtable Audit Logs Fields API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Fields", "type": "folder" }, "items": [ { "info": { "name": "Airtable Create a Field in a Table", "type": "http" }, "http": { "method": "POST", "url": "https://api.airtable.com/v0/meta/bases/:baseId/tables/:tableId/fields", "params": [ { "name": "baseId", "value": "", "type": "path", "description": "The unique identifier of the base (starts with 'app')." }, { "name": "tableId", "value": "", "type": "path", "description": "The unique identifier of the table (starts with 'tbl')." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new field in the specified table. The field must include a name and type. Some field types (like singleSelect, multipleSelects) accept additional options for configuration. Note that formula and some computed field types cannot be created via the API." }, { "info": { "name": "Airtable Update a Field", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.airtable.com/v0/meta/bases/:baseId/tables/:tableId/fields/:fieldId", "params": [ { "name": "baseId", "value": "", "type": "path", "description": "The unique identifier of the base (starts with 'app')." }, { "name": "tableId", "value": "", "type": "path", "description": "The unique identifier of the table (starts with 'tbl')." }, { "name": "fieldId", "value": "", "type": "path", "description": "The unique identifier of the field (starts with 'fld')." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the name, description, or configuration options of an existing field. Only the provided properties will be modified. Not all field properties can be updated after creation." } ] } ], "bundled": true }