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.
https://api.frontegg.com/applications/
https://api.us.frontegg.com/applications/
https://api.ca.frontegg.com/applications/
https://api.au.frontegg.com/applications/
https://{domain}.frontegg.com/applications/
https://api.frontegg.com/applications/resources/applications/v1/{id}
https://api.us.frontegg.com/applications/resources/applications/v1/{id}
https://api.ca.frontegg.com/applications/resources/applications/v1/{id}
https://api.au.frontegg.com/applications/resources/applications/v1/{id}
https://app-xxx.frontegg.com/applications/resources/applications/v1/{id}
curl -i -X GET \
'https://api.frontegg.com/applications/resources/applications/v1/{id}'
{ "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": {} }
https://api.frontegg.com/applications/resources/applications/v1/{id}
https://api.us.frontegg.com/applications/resources/applications/v1/{id}
https://api.ca.frontegg.com/applications/resources/applications/v1/{id}
https://api.au.frontegg.com/applications/resources/applications/v1/{id}
https://app-xxx.frontegg.com/applications/resources/applications/v1/{id}
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": {}
}'
https://api.frontegg.com/applications/resources/applications/v1/{id}
https://api.us.frontegg.com/applications/resources/applications/v1/{id}
https://api.ca.frontegg.com/applications/resources/applications/v1/{id}
https://api.au.frontegg.com/applications/resources/applications/v1/{id}
https://app-xxx.frontegg.com/applications/resources/applications/v1/{id}
curl -i -X DELETE \
'https://api.frontegg.com/applications/resources/applications/v1/{id}'