Enable a tenant FLECS store
POST
/api/v1/system/flecs-stores/{organizationId}/enable
const url = 'http://localhost:3000/api/v1/system/flecs-stores/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/enable';const options = {method: 'POST', 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 POST \ --url http://localhost:3000/api/v1/system/flecs-stores/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/enable \ --header 'X-API-Key: <X-API-Key>'Activates catalog syncing for the configured store. Requires Super Admin privileges.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” organizationId
required
string format: uuid
Organization UUID
Responses
Section titled “ Responses ”Store enabled
Media type application/json
object
id
required
Store configuration ID
string format: uuid
organizationId
required
Owning organization ID
string format: uuid
storeId
required
FLECS store ID
number
enabled
required
Whether the store is active
boolean
lastSyncAt
When the catalog was last synced (discovery phase)
string format: date-time
lastSyncError
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.
string
createdAt
required
Creation timestamp
string format: date-time
updatedAt
required
Last update timestamp
string format: date-time
Example
{ "storeId": 89, "enabled": true}Unauthorized
Forbidden - requires Super Admin privileges
No FLECS store configured for this organization