Get the locale tree
const url = 'https://api.ebitex.io/content/delivery/v1/locales';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/delivery/v1/locales \ --header 'Authorization: Bearer <token>'The organization’s locales as a flat, parent-linked list, where parentCode is null for the root.
Use it to choose the one locale= code to send on other requests. The API takes exactly one code and does not fall back from fr-CA to fr on its own. Cacheable at the edge on the same terms as /sites.
Key: a delivery key (content.delivery.read).
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters”Responses
Section titled “ Responses ”OK
environment_mismatch: env names a different delivery environment than the key’s.
missing_api_key or invalid_api_key: no key was sent, or it is unknown, revoked or expired.
scope_denied: the key lacks this route’s scope. origin_denied or ip_denied: a browser-safe key was used from an origin or address outside its restrictions. app_not_available: Content is not enabled for the organization.
Quota exceeded; Retry-After says how long to wait. too_many_failed_authentications: too many bad keys from this address.