Retrieve all account (tenant) IDs currently assigned to a specific application.
Send the application ID as a path parameter.
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 GET \
'https://api.frontegg.com/applications/resources/applications/tenant-assignments/v1/{appId}'{ "tenantIds": [ "string" ] }
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}'