Get a tenant FLECS store configuration
const url = 'http://localhost:3000/api/v1/system/flecs-stores/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = {method: 'GET', headers: {'X-API-Key': '<X-API-Key>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:3000/api/v1/system/flecs-stores/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \ --header 'X-API-Key: <X-API-Key>'Retrieves the FLECS marketplace store configuration for an organization. Requires Super Admin privileges. There is no credential concept for FLECS — the catalog endpoint is public and unauthenticated, so this returns only the store ID, whether it is enabled, and discovery sync diagnostics.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Organization UUID
Responses
Section titled “ Responses ”Configuration retrieved
object
Store configuration ID
Owning organization ID
FLECS store ID
Whether the store is active
When the catalog was last synced (discovery phase)
Failure from the most recent discovery call (the store-id lookup itself). Does not reflect the outcome of the downstream OCI sync, which is tracked on the linked registry.
Creation timestamp
Last update timestamp
Example
{ "storeId": 89, "enabled": true}Unauthorized
Forbidden - requires Super Admin privileges
No FLECS store configured for this organization