Get
Get Certified

Fetch Airtable record by ID

yaml
type: io.kestra.plugin.airtable.records.Get
yaml
id: get_airtable_task
namespace: company.airtable

tasks:
  - id: get_task
    type: io.kestra.plugin.airtable.records.Get
    baseId: "{{ secret('AIRTABLE_BASE_ID') }}"
    tableId: "Tasks"
    recordId: "recXXXXXXXXXXXXXX"
    apiKey: "{{ secret('AIRTABLE_PERSONAL_ACCESS_TOKEN') }}"
    fields: ["Task Name", "Status", "Priority", "Due Date"]

yaml
id: get_customer
namespace: company.airtable

inputs:
  - id: customer_id
    type: STRING
    required: true

tasks:
  - id: get_customer_record
    type: io.kestra.plugin.airtable.records.Get
    baseId: "{{ secret('AIRTABLE_BASE_ID') }}"
    tableId: "Customers"
    recordId: "{{ inputs.customer_id }}"
    apiKey: "{{ secret('AIRTABLE_PERSONAL_ACCESS_TOKEN') }}"
Properties
SubTypestring