Web API

Press shift + S to search API reference.

Extensions

Manage block installation

patchhttps://api.airtable.com/v0/meta/bases/{baseId}/blockInstallations/{blockInstallationId}

Manages block installation state.

Requirements

AuthenticationPersonal access token, OAuth integration
ScopeworkspacesAndBases:write
User role

Base creator

Billing plansEnterprise (pre-2023.08 legacy plan), Enterprise Scale

Path parameters

baseId
string
blockInstallationId
string

Request body

state
"enabled" | "disabled"

Response format

This endpoint returns an empty response on success.
Request (example)
Copy
$
curl -X PATCH "https://api.airtable.com/v0/meta/bases/{baseId}/blockInstallations/{blockInstallationId}" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
--data '{
"state": "disabled"
}'