Britive Applications - Association Approvers API
Manage association approvers for an application
Manage association approvers for an application
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/britive-applications-association-approvers-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: Britive Services API Documentation Applications…
version: v1
description: API documentation for Users, Tags, Identity providers, Applications, Reporting, Audit logs, Tenants, SSO, Profiles, Password policies, MFA, Access Builder Settings, etc.
servers:
- url: https://{tenantURL}
description: The primary server
variables:
tenantURL:
default: test.britive-app.com
description: The host of the server
security:
- bearerAuth: []
tags:
- name: Applications - Association Approvers
description: Manage association approvers for an application
paths:
/api/apps/{appId}/association-approvers:
post:
tags:
- Applications - Association Approvers
summary: Create Association Approvers combination for an application
operationId: createAssociationApprovers
parameters:
- name: appId
in: path
description: id of the application.
required: 'true'
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AssociationApproversDto'
required: 'true'
responses:
'200':
description: Successfully created Association Approvers
content:
application/json:
schema:
$ref: '#/components/schemas/AssociationApproversDto'
get:
tags:
- Applications - Association Approvers
summary: Get associations and approver groups combination configured for an application
operationId: getAssociationApprovers
parameters:
- name: appId
in: path
description: id of the application.
required: 'true'
schema:
type: string
responses:
'200':
description: Successfully retrieved Association Approvers.
content:
application/json:
schema:
$ref: '#/components/schemas/AssociationApproversSummary'
/api/apps/{appId}/association-approvers/{id}:
delete:
tags:
- Applications - Association Approvers
summary: Delete association approvers configured for a given id in an application
operationId: deleteAssociationApprovers
parameters:
- name: appId
in: path
description: id of the application.
required: 'true'
schema:
type: string
- name: id
in: path
description: id of the association approvers.
required: 'true'
schema:
type: string
responses:
'204':
description: delete association aprovers combination
'404':
description: Access request group id not found
get:
tags:
- Applications - Association Approvers
summary: Get configured association and approvers by id to an application
operationId: getAssociationApproversById
parameters:
- name: appId
in: path
description: id of the application.
required: 'true'
schema:
type: string
- name: id
in: path
description: id of the association approvers.
required: 'true'
schema:
type: string
responses:
'200':
description: Successfully retrieved access request group.
content:
application/json:
schema:
$ref: '#/components/schemas/AssociationApproversDto'
'404':
description: Association Approvers configured to an id not found
content:
application/json:
schema:
$ref: '#/components/schemas/AssociationApproversDto'
patch:
tags:
- Applications - Association Approvers
summary: Update association and approvers for a given id
operationId: updateAssociationApprovers
parameters:
- name: appId
in: path
description: id of the application.
required: 'true'
schema:
type: string
- name: id
in: path
description: id of the association approvers.
required: 'true'
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AssociationApproversDto'
required: 'true'
responses:
'204':
description: Association & Approvers combination updated
'404':
description: Association Approvers set for a given id not found
components:
schemas:
AssociationDto:
type: object
properties:
id:
type: string
type:
type: string
description: Association type
enum:
- '0'
- '1'
MemberDto:
type: object
properties:
id:
type: string
name:
type: string
memberType:
type: string
enum:
- User
- Tag
AssociationApproversDto:
type: object
properties:
id:
type: string
name:
type: string
associations:
type: array
items:
$ref: '#/components/schemas/AssociationDto'
approversGroups:
type: array
items:
$ref: '#/components/schemas/ApproversGroupDto'
ApproversGroupDto:
type: object
properties:
id:
type: string
name:
type: string
condition:
type: string
enum:
- All
- Any
members:
type: array
items:
$ref: '#/components/schemas/MemberDto'
AssociationApproversSummary:
type: object
properties:
associationApproversSummary:
type: array
items:
$ref: '#/components/schemas/AssociationApproversDto'
securitySchemes:
bearerAuth:
type: http
scheme: bearer