Register a client app
documentedRegister a new API client app (app registration).
POST /appsAuthenticationno 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://api.connectionpoint.com/v1/apps" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$app_name}}", "redirect_uris": ["{{$redirect_uri}}"], "homepage_url": "{{$homepage_url}}", "description": "{{$description}}", "logo_url": "{{$logo_url}}"}'