Assign an application to a specific account (tenant).
Provide the application ID as a path parameter and the target account (tenant) ID in the request body.
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.
curl -i -X POST \
'https://api.frontegg.com/applications/resources/applications/tenant-assignments/v1/{appId}' \
-H 'Content-Type: application/json' \
-d '{
"tenantId": "string"
}'{ "tenantId": "string", "appIds": [ "string" ] }
curl -i -X DELETE \
'https://api.frontegg.com/applications/resources/applications/tenant-assignments/v1/{appId}/{tenantId}'curl -i -X GET \
'https://api.frontegg.com/applications/resources/applications/v1/credentials/{appId}'{ "clientSecret": "string", "sharedSecret": "string" }