Create table
documentedCreate a new table in the Caspio account.
POST /integrations/rest/v3/tablesTablesno implementation yet0 runsNo 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_host}}.caspio.com/integrations/rest/v3/tables" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"Name": "{{$title}}", "Description": "{{$description}}", "Fields": [ {"Name": "{{$field1_name}}", "Type": "{{$field1_type}}", "Length": {{$field1_length}}}, {"Name": "{{$field2_name}}", "Type": "{{$field2_type}}", "Length": {{$field2_length}}} ] }'