Breeze Organization Settings API
The Organization Settings API from Breeze — 1 operation(s) for organization settings.
The Organization Settings API from Breeze — 1 operation(s) for organization settings.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/breeze-organization-settings-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Breeze Admin Organization Settings API
description: A comprehensive API for managing yield farming operations, funds, and user authentication
contact:
name: Breeze Team
email: support@breeze.com
license:
name: Proprietary
url: https://breeze.com/license
version: 1.0.0
servers:
- url: http://localhost:8080
description: Local development server
- url: https://api.breeze.com
description: Production server
tags:
- name: Organization Settings
paths:
/organization/settings:
put:
tags:
- Organization Settings
operationId: update_organization_settings
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ApiUpdateOrganizationSettingsRequest'
required: true
responses:
'200':
description: Organization settings updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ApiOrganizationSettingsResponse'
'400':
description: Invalid request
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'403':
description: Organization access denied
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- bearer_auth: []
post:
tags:
- Organization Settings
operationId: get_organization_settings
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ApiGetRequestBasedOrgTagsInput'
required: true
responses:
'200':
description: Organization settings retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ApiOrganizationSettingsResponse'
'404':
description: Organization not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- bearer_auth: []
components:
schemas:
ApiUpdateOrganizationSettingsRequest:
type: object
properties:
fee_distribution_key:
type:
- string
- 'null'
description: Fee distribution key for the organization
tags:
type:
- array
- 'null'
items:
type: string
description: Tags for the organization
ApiGetRequestBasedOrgTagsInput:
type: object
properties:
organization_id:
type:
- string
- 'null'
ErrorResponse:
type: object
required:
- message
properties:
message:
type: string
description: Error message description
ApiOrganizationSettingsResponse:
type: object
required:
- settings
properties:
settings:
$ref: '#/components/schemas/ApiOrganizationSettings'
description: Organization settings
ApiOrganizationSettings:
type: object
required:
- organization_id
- fee_distribution_key
- tags
properties:
fee_distribution_key:
type: string
description: Fee distribution key for the organization
organization_id:
type: string
description: Organization ID
tags:
type: array
items:
type: string
description: Tags for the organization
securitySchemes:
api_key:
type: apiKey
in: header
name: x-api-key
bearer_auth:
type: http
scheme: bearer
bearerFormat: JWT