Retrieve the details of a specific application by its unique ID within the current environment. Use this route to fetch configuration, metadata, and status information for a given application. This request requires an environment token for authentication.
Applications module//
- Update an application
Get all applications for an environment
Create application
Get the default application for an environment
Get application by ID
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
Get application client credentials
Regenerate application client credentials
Regenerate application shared secret credential
Update an application
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/v1/{id}
- US Regionhttps://api.us.frontegg.com/applications/resources/applications/v1/{id}
- CA Regionhttps://api.ca.frontegg.com/applications/resources/applications/v1/{id}
- AU Regionhttps://api.au.frontegg.com/applications/resources/applications/v1/{id}
- Frontegg sub-domain for use with user tokenshttps://app-xxx.frontegg.com/applications/resources/applications/v1/{id}
- cURL
- JavaScript
- Python
- GO
- Payload
curl -i -X GET \
'https://api.frontegg.com/applications/resources/applications/v1/{id}'Response
application/json
{ "id": "string", "accessType": "FREE_ACCESS", "appURL": "string", "loginURL": "string", "isDefault": true, "isActive": true, "name": "string", "logoURL": "string", "createdAt": "string", "updatedAt": "string", "type": "string", "frontendStack": "string", "description": "string", "integrationFinishedAt": "string", "metadata": {} }
- EU Regionhttps://api.frontegg.com/applications/resources/applications/v1/{id}
- US Regionhttps://api.us.frontegg.com/applications/resources/applications/v1/{id}
- CA Regionhttps://api.ca.frontegg.com/applications/resources/applications/v1/{id}
- AU Regionhttps://api.au.frontegg.com/applications/resources/applications/v1/{id}
- Frontegg sub-domain for use with user tokenshttps://app-xxx.frontegg.com/applications/resources/applications/v1/{id}
- cURL
- JavaScript
- Python
- GO
- Payload
curl -i -X PATCH \
'https://api.frontegg.com/applications/resources/applications/v1/{id}' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"appURL": "string",
"loginURL": "string",
"logoURL": "string",
"accessType": "FREE_ACCESS",
"isDefault": false,
"isActive": true,
"type": "web",
"frontendStack": "react",
"description": "string",
"metadata": {}
}'- EU Regionhttps://api.frontegg.com/applications/resources/applications/v1/{id}
- US Regionhttps://api.us.frontegg.com/applications/resources/applications/v1/{id}
- CA Regionhttps://api.ca.frontegg.com/applications/resources/applications/v1/{id}
- AU Regionhttps://api.au.frontegg.com/applications/resources/applications/v1/{id}
- Frontegg sub-domain for use with user tokenshttps://app-xxx.frontegg.com/applications/resources/applications/v1/{id}
- cURL
- JavaScript
- Python
- GO
- Payload
curl -i -X DELETE \
'https://api.frontegg.com/applications/resources/applications/v1/{id}'