List components
const url = 'https://api.ebitex.io/content/management/v1/components';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.ebitex.io/content/management/v1/components \ --header 'Authorization: Bearer <token>'Lists the components in the key’s authoring environment, drafts included, as summaries without their documents. Components in branches the key’s role cannot view are left out, and totalCount counts only the ones it can see.
folderIdlists one folder’s direct contents;rootOnly=truelists only components filed at the root.contractIdmatches one contract exactly;adheresToContractIdalso matches every contract that inherits from it.categoryIdmatches components tagged with, or holding a category field value of, that category or any of its sub-categories.searchis a case-insensitive substring match on name and external id;externalIdis an exact match.sortisname(the default) orupdated(most recently changed first).
Paging is by number: page starts at 1, and pageSize defaults to 20 with a maximum of 100. Each summary carries the pinned and latest contract version numbers, whether it satisfies its folder’s allowed contracts, and effectiveActions: what the key’s role may do to it.
Key: a management key with content.management.read.
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters”Responses
Section titled “ Responses ”{ "items": [ … ], "totalCount": 42, "page": 1, "pageSize": 20 }
invalid_sort: sort is neither name nor updated.
missing_api_key or invalid_api_key: no key was sent, or it is unknown, revoked or expired.
payment_required: the organization’s subscription needs attention.
scope_denied: the key lacks this route’s scope. tier_required: the Content Management API needs the Pro plan or above. ip_denied: the caller’s address is outside the key’s allowed ranges. app_not_available: Content is not enabled for the organization.
Rate limit or quota exceeded; Retry-After says how long to wait. too_many_failed_authentications: too many bad keys from this address.