Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/alianza-brand-settings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
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 Specification
openapi: 3.2.0
info:
title: Alianza Brand Settings API
version: '2'
description: 'Operations tagged Brand Settings across 2 of this provider''s published API definitions: alianza-brand-settings-api-openapi.yml, alianza-openapi-original.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.d2.alianza.com
description: Development
- url: https://api.q2.alianza.com
description: QA
- url: https://api.b2.alianza.com
description: Beta
- url: https://api.alianza.com
description: Production
security:
- X-Auth-Token: []
tags:
- name: Brand Settings
description: Brand settings toggles
paths:
/v2/app-branding/brand-settings:
servers:
- url: https://api.d2.alianza.com
description: Development
- url: https://api.q2.alianza.com
description: QA
- url: https://api.b2.alianza.com
description: Beta
- url: https://api.alianza.com
description: Production
get:
tags:
- Brand Settings
summary: Retrieve the general settings for all app brands of a partition.
operationId: getBrandSettingsByPartitionId
parameters:
- name: partition
in: query
description: PartitionId for brands being retrieved.
schema:
type: string
responses:
'200':
description: Success
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/BrandSettingsDTO'
'400':
description: Invalid Partition ID supplied
content:
application/json:
schema:
$ref: '#/components/schemas/BrandErrorResponse'
'404':
description: Partition not found
content:
application/json:
schema:
$ref: '#/components/schemas/BrandErrorResponse'
post:
tags:
- Brand Settings
summary: Provision general settings associated to app branding for a new brand.
operationId: createBrandByPartitionId
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateBrandSettings'
responses:
'201':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/BrandSettingsDTO'
'400':
description: Invalid Partition ID supplied
content:
application/json:
schema:
$ref: '#/components/schemas/BrandErrorResponse'
'404':
description: Partition not found
content:
application/json:
schema:
$ref: '#/components/schemas/BrandErrorResponse'
'409':
description: 'Conflict: Brand already exists for the partition'
content:
application/json:
schema:
$ref: '#/components/schemas/BrandErrorResponse'
/v2/app-branding/brand-settings/{brandId}:
servers:
- url: https://api.d2.alianza.com
description: Development
- url: https://api.q2.alianza.com
description: QA
- url: https://api.b2.alianza.com
description: Beta
- url: https://api.alianza.com
description: Production
get:
tags:
- Brand Settings
summary: Retrieve the general settings associated to a specific brand.
operationId: getBrandSettingsById
parameters:
- name: brandId
in: path
description: ID of brand to return
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/BrandSettingsDTO'
'400':
description: Invalid ID supplied
content:
application/json:
schema:
$ref: '#/components/schemas/BrandErrorResponse'
'404':
description: Brand not found
content:
application/json:
schema:
$ref: '#/components/schemas/BrandErrorResponse'
put:
tags:
- Brand Settings
summary: Provision the general settings associated to a specific brand.
operationId: updateBrandSettingsById
parameters:
- name: brandId
in: path
description: ID of brand whose settings are being updated
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/BrandSettingsDTO'
responses:
'200':
description: Settings updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/BrandSettingsDTO'
'404':
description: Brand not found
content:
application/json:
schema:
$ref: '#/components/schemas/BrandErrorResponse'
'409':
description: Modification of brandingCompleted is not allowed
content:
application/json:
schema:
$ref: '#/components/schemas/BrandErrorResponse'
components:
schemas:
BrandErrorResponse:
type: object
properties:
code:
$ref: '#/components/schemas/BrandError'
description:
type: string
BrandError:
type: string
format: int32
example: 10404 - Resource not found
enum:
- 10001 - API hasn't been implemented yet
- 10404 - Resource not found
- 10403 - Not authorized
- 10500 - Internal Server Error
- 10002 - BrandDetails validation failed
- 10003 - Brand already exists for the given partition
- 10004 - Branding completion is readonly
- 10005 - Partition mismatch
- 10006 - File format is invalid
- 10007 - Active build request already exists
- 10008 - Brand domains setup is not completed
- 10009 - Build cannot be published
- 10010 - Desktop hosting feature is disabled
CreateBrandSettings:
type: object
properties:
partitionId:
type: string
brandingEnabled:
type: boolean
selfSigningEnabled:
type: boolean
desktopHostingEnabled:
type: boolean
required:
- brandingEnabled
- partitionId
- selfSigningEnabled
BrandSettingsDTO:
type: object
properties:
partitionId:
type: string
brandId:
type: string
format: uuid
brandName:
type: string
brandingEnabled:
type: boolean
brandingCompleted:
type: boolean
selfSigningEnabled:
type: boolean
desktopHostingEnabled:
type: boolean
required:
- brandId
- brandName
- brandingCompleted
- brandingEnabled
- partitionId
- selfSigningEnabled
securitySchemes:
X-Auth-Token:
type: apiKey
in: header
name: X-AUTH-TOKEN
x-refined-from:
- alianza-brand-settings-api-openapi.yml
- alianza-openapi-original.yml