{"id":19190513,"url":"https://github.com/mdxprograms/craft-airtable","last_synced_at":"2025-09-11T12:34:51.420Z","repository":{"id":95270448,"uuid":"75639574","full_name":"mdxprograms/craft-airtable","owner":"mdxprograms","description":"Airtable integration in craft cms","archived":false,"fork":false,"pushed_at":"2019-11-07T16:46:48.000Z","size":23,"stargazers_count":11,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-05-08T04:49:41.873Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mdxprograms.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-12-05T15:39:02.000Z","updated_at":"2025-02-20T20:56:12.000Z","dependencies_parsed_at":"2023-04-13T00:03:16.210Z","dependency_job_id":null,"html_url":"https://github.com/mdxprograms/craft-airtable","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdxprograms%2Fcraft-airtable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdxprograms%2Fcraft-airtable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdxprograms%2Fcraft-airtable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdxprograms%2Fcraft-airtable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mdxprograms","download_url":"https://codeload.github.com/mdxprograms/craft-airtable/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253002841,"owners_count":21838637,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T11:34:41.400Z","updated_at":"2025-05-08T04:49:46.900Z","avatar_url":"https://github.com/mdxprograms.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Airtable plugin for Craft CMS\n\nUse Airtable bases in Craft\n\n![Screenshot](http://www.chromegeek.com/wp-content/uploads/2016/02/Airtable-official-logo.png)\n\n## Installation\n\nTo install Airtable, follow these steps:\n\n1. `cd \u003cyour_project\u003e/craft/plugins \u0026\u0026 git clone https://github.com/mdxprograms/craft-airtable.git airtable`\n\nAirtable works on Craft 2.4.x and Craft 2.5.x.\n\n## Airtable Overview\n\nThis plugin adds the ability to integrate your airtable bases and tables into\ncraft cms.\n\n## Configuring Airtable\n\nTo add your settings, go to settings-\u003eplugins-\u003eairtable in craft admin panel.\n\n1. You will need to supply your api key\n2. Bases and Tables input takes the base id and then the table name.\n\nEx: `appSdasdfindin@Products`\n\nYou may add more by separating your entries with a `,`\n\nEx: `appSdasdfindin@Products,appSdasdfindin@Categories`\n\n## Using Airtable\n\nOnce your settings are saved you will have access to a full crud api and some\ntemplate variables as well.\n\n### Twig template variables\nFind All records in a table:\n`craft.airtable.all('your_table_name')`\n\nFind a single record within a table:\n`craft.airtable.find('your_table_name', 'your_record_id')`\n\nList tables:\n`craft.airtable.tables()`\n\nGet a specific base by associated table:\n`craft.airtable.getBase('your_table_name')`\n\n### API CRUD and form submissions\nFind All records (table name is required as a parameter):\n`GET: airtable/records/all`\n\nFind a single record within a table (table name and record id are required parameters):\n`GET: airtable/records/find`\n\nSave a record using a custom form:\nNOTE: you will need to supply a hidden field with the `name=\"table\"` with your\ntable name as the value.\nAll form elements that you would like to post to will need to be added with\n`name=\"fields[your_field_name]\"`\n\nYou can also use the update action using the same form setup by just replacing\nthe hidden action field value to: `airtable/records/update` and add a hidden field\n`name=\"recordId\"` with the current record's id as the value.\n\nExample form save below:\n```\n\u003cform method=\"post\" action=\"\" accept-charset=\"UTF-8\"\u003e\n  \u003cinput type=\"hidden\" name=\"action\" value=\"airtable/records/save\"\u003e\n  \u003cinput type=\"hidden\" name=\"table\" value=\"Candidates\"\u003e\n\n  \u003cinput type=\"email\" name=\"fields[Email]\" id=\"email\" placeholder=\"Email\" required\u003e\n  \u003cinput type=\"text\" name=\"fields[First Name]\" id=\"first_name\" placeholder=\"First Name\" required\u003e\n  \u003cinput type=\"text\" name=\"fields[Last Name]\" id=\"last_name\" placeholder=\"Last Name\" required\u003e\n  \u003cinput type=\"tel\" name=\"fields[Phone]\" id=\"phone\" placeholder=\"Phone\"\u003e\n  \u003cinput type=\"text\" name=\"fields[Website]\" id=\"website\" placeholder=\"website\"\u003e\n  \u003ctextarea name=\"fields[Where did you hear about us]\" rows=\"8\" cols=\"80\" placeholder=\"Where did you hear about us?\"\u003e\u003c/textarea\u003e\n\n  \u003cinput class=\"btn submit\" type=\"submit\" value=\"{{ 'Submit'|t }}\"\u003e\n\u003c/form\u003e\n```\n\nDelete record (`recordId` must be supplied via post data):\n`POST: airtable/records/delete`\n\n## Airtable Roadmap\n\nSome things to do, and ideas for potential features:\n\n* Generate forms based on table fields with a twig template generated\n\n## Airtable Changelog\n\n### 1.0.0 -- 2016.12.5\n\n* Initial release\n\nBrought to you by [Josh Waller](https://www.joshwaller.me)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdxprograms%2Fcraft-airtable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmdxprograms%2Fcraft-airtable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdxprograms%2Fcraft-airtable/lists"}