Airtable

Get and run Airtable integration from our API

Get Airtable image generation status

GET https://api.usestencil.com/v1/airtables/:id

Path Parameters

NameTypeDescription

id*

string

ID of the action

{
    "action_title": "Demo",
    "base_id": "appdxxxxx",
    "status": "Started",
    "table_name": "Demo",
    "view_name": null
}

Trigger Airtable image generation from the API

POST https://api.usestencil.com/v1/airtables/:id

Path Parameters

NameTypeDescription

id*

string

ID of the action

{
    "action_title": "Demo",
    "base_id": "appdxxxxx",
    "status": "Starting",
    "table_name": "Demo",
    "view_name": null
}

status field

Description

null

Nothing is being generated. It Indicates that no job is running or the job has finished running.

Starting

Image generation is starting.

Started

Image generation is already started.

Last updated