Remove the assignment of an application from a specific account (tenant).
Applications module//
- Get application client credentials
Get all applications for an environment
Create application
Get the default application for an environment
Get application by ID
Update an application
Delete an application
Get application to accounts (tenants) assignments
Get account (tenant) assignments for an application
Create application to account (tenant) assignment
Delete application to account (tenant) assignment
Regenerate application client credentials
Regenerate application shared secret credential
Get application client cr...
Multi-Apps Overview
Frontegg’s Multi-Apps feature simplifies and streamlines application management, delivering a seamless user experience. This section includes all necessary endpoints for managing applications and copying application settings across environments. All endpoints are categorized as Management Endpoints, requiring environment-level authorization and providing full control over entitlement resources.
Download OpenAPI description
Languages
Servers
EU Region
https://api.frontegg.com/applications/
US Region
https://api.us.frontegg.com/applications/
CA Region
https://api.ca.frontegg.com/applications/
AU Region
https://api.au.frontegg.com/applications/
Frontegg sub-domain for use with user tokens
https://{domain}.frontegg.com/applications/
- EU Regionhttps://api.frontegg.com/applications/resources/applications/tenant-assignments/v1/{appId}/{tenantId}
- US Regionhttps://api.us.frontegg.com/applications/resources/applications/tenant-assignments/v1/{appId}/{tenantId}
- CA Regionhttps://api.ca.frontegg.com/applications/resources/applications/tenant-assignments/v1/{appId}/{tenantId}
- AU Regionhttps://api.au.frontegg.com/applications/resources/applications/tenant-assignments/v1/{appId}/{tenantId}
- Frontegg sub-domain for use with user tokenshttps://app-xxx.frontegg.com/applications/resources/applications/tenant-assignments/v1/{appId}/{tenantId}
- cURL
- JavaScript
- Python
- GO
- Payload
curl -i -X DELETE \
'https://api.frontegg.com/applications/resources/applications/tenant-assignments/v1/{appId}/{tenantId}'- EU Regionhttps://api.frontegg.com/applications/resources/applications/v1/credentials/{appId}
- US Regionhttps://api.us.frontegg.com/applications/resources/applications/v1/credentials/{appId}
- CA Regionhttps://api.ca.frontegg.com/applications/resources/applications/v1/credentials/{appId}
- AU Regionhttps://api.au.frontegg.com/applications/resources/applications/v1/credentials/{appId}
- Frontegg sub-domain for use with user tokenshttps://app-xxx.frontegg.com/applications/resources/applications/v1/credentials/{appId}
- cURL
- JavaScript
- Python
- GO
- Payload
curl -i -X GET \
'https://api.frontegg.com/applications/resources/applications/v1/credentials/{appId}'Response
application/json
{ "clientSecret": "string", "sharedSecret": "string" }
- EU Regionhttps://api.frontegg.com/applications/resources/applications/v1/credentials/regenerate
- US Regionhttps://api.us.frontegg.com/applications/resources/applications/v1/credentials/regenerate
- CA Regionhttps://api.ca.frontegg.com/applications/resources/applications/v1/credentials/regenerate
- AU Regionhttps://api.au.frontegg.com/applications/resources/applications/v1/credentials/regenerate
- Frontegg sub-domain for use with user tokenshttps://app-xxx.frontegg.com/applications/resources/applications/v1/credentials/regenerate
- cURL
- JavaScript
- Python
- GO
- Payload
curl -i -X POST \
https://api.frontegg.com/applications/resources/applications/v1/credentials/regenerate \
-H 'Content-Type: application/json' \
-d '{
"appId": "string"
}'