Sign in

Create app

documented

Creates a new app on a space.

POST /app/Applicationsno 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://api.podio.com/v1/app/" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"space_id": {{$space_id}}, "config": { "type": "{{$type}}", "name": "{{$app_name}}", "item_name": "{{$item_name}}", "description": "{{$description}}", "usage": "{{$usage}}", "external_id": "{{$external_id}}", "icon": "{{$icon}}", "default_view": "{{$default_view}}", "allow_edit": {{$allow_edit}}, "allow_attachments": {{$allow_attachments}}, "silent_creates": {{$silent_creates}}, "silent_edits": {{$silent_edits}} } }'
Create app · Podio · OpenIntegrations