Get org app settings
GET /api/organizations/app
Get organization app settings for the user's current organization. This endpoint retrieves application settings for the authenticated user's current organization. Access requires the MANAGE_APPLICATION_SETTINGS permission, which is granted to all organization members (member, admin, and owner roles). Args: service: OrgAppSettingsService (injected by dependency) Returns: OrgAppSettingsResponse: The organization app settings Raises: HTTPException: 401 if user is not authenticated HTTPException: 403 if user lacks MANAGE_APPLICATION_SETTINGS permission HTTPException: 404 if current organization not found
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
org_id | query | `string | null` | no |
X-Org-Id | header | `string | null` | no |
Responses
| Status | Description |
|---|---|
200 | Successful Response |
422 | Validation Error |
Response body
| Field | Type | Required | Description |
|---|---|---|---|
enable_proactive_conversation_starters | boolean | no | — |
max_budget_per_task | `number | null` | no |
registered_marketplaces | faheemcode__app_server__settings__settings_models__MarketplaceRegistration[] | no | — |
updated_at | `string | null` | no |
Operation ID: get_org_app_settings_api_organizations_app_get