Britive Application Environments API
Manage Application Environments
Manage Application Environments
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-application-environments-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 Application Environments…
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: Application Environments
description: Manage Application Environments
paths:
/api/apps/{appContainerId}/environments:
get:
tags:
- Application Environments
summary: Get details of all environments present in the system
operationId: environments_3
parameters:
- name: appContainerId
in: path
required: 'true'
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
/api/apps/{appContainerId}/environments/{environmentId}:
delete:
tags:
- Application Environments
summary: Delete an environment within an application
description: This applies to the following applications - AWS Standalone, SalesForce, and ServiceNow.
operationId: environments
parameters:
- name: appContainerId
in: path
required: 'true'
schema:
type: string
- name: environmentId
in: path
required: 'true'
schema:
type: string
responses:
'200':
description: OK
get:
tags:
- Application Environments
summary: Get an environment within an application
operationId: environments_1
parameters:
- name: appContainerId
in: path
required: 'true'
schema:
type: string
- name: environmentId
in: path
required: 'true'
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
/api/apps/{appContainerId}/environments/{environmentId}/groups/{groupId}/accounts:
get:
tags:
- Application Environments
summary: Get accounts associated with a group for a given application and environment
operationId: getEnvironmentGroupUsers
parameters:
- name: appContainerId
in: path
required: 'true'
schema:
type: string
- name: environmentId
in: path
required: 'true'
schema:
type: string
- name: groupId
in: path
required: 'true'
schema:
type: integer
format: int64
- $ref: '#/components/parameters/Page'
- $ref: '#/components/parameters/Size'
- $ref: '#/components/parameters/Sort'
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
/api/apps/{appContainerId}/environments/{environmentId}/scans:
get:
tags:
- Application Environments
summary: Submit a scan for the application and environment IDs provided in the request…
description: You can use the Check Scan Status API to find the status of the scan task.
operationId: environmentScan
parameters:
- name: appContainerId
in: path
required: 'true'
schema:
type: string
- name: environmentId
in: path
required: 'true'
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
post:
tags:
- Application Environments
summary: Submits a scan for specified application and environment
description: You can use the Check Scan Status API to find the status of the scan task.
operationId: environmentScan_1
parameters:
- name: appContainerId
in: path
required: 'true'
schema:
type: string
- name: environmentId
in: path
required: 'true'
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
components:
parameters:
Size:
name: size
in: query
required: 'false'
description: parameter to specify the number of records to retrieve per page
schema:
type: integer
default: '20'
Sort:
name: sort
in: query
required: 'false'
description: parameter to specify the sort parameter and direction
schema:
type: string
Page:
name: page
in: query
required: 'false'
description: Parameter to specify the page number of the records to retrieve
schema:
type: integer
default: '0'
securitySchemes:
bearerAuth:
type: http
scheme: bearer