Sign in

Update table

documented

Update the design/definition of a specific table.

PUT /integrations/rest/v3/tables/{tableName}Tablesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$integration_url}}/integrations/rest/v3/tables/{{$tableName}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"Name": "{{$new_table_name}}", "Description": "{{$description}}"}'
# Sources:
# - Migration to REST API v3: https://howto.caspio.com/integrate-your-apps/web-services-api/migration-rest-api-v2-to-rest-api-v3/
# - Authenticating REST API: https://howto.caspio.com/integrate-your-apps/web-services-api/authenticating-rest/