Found 518 results for "gitana 4.0 engine api datatypes vault"

The search executed in 0.0024 seconds. That's fast.

Gitana 3.2 / Guide / Guide / Search

Documentation Reference

'Optimize your content discovery with Cloud CMS's powerful ElasticSearch features for efficient indexing and querying.' (Gitana 3.2)

Score: 0.9969

Gitana 4.0 / Content Engine / Search

Documentation Reference

Enhance content discovery with Cloud CMS's advanced search capabilities powered by ElasticSearch. (Gitana 4.0)

Score: 0.9969

Gitana 3.2 / Guide / Guide / Binary Files

Documentation Reference

Upload and manage binary files with Cloud CMS, featuring antivirus scanning, metadata extraction, and various storage options. (Gitana 3.2)

Score: 0.9796

Gitana 4.0 / Content Engine / Platform / Binary Files

Documentation Reference

Effortlessly manage and store binary files with Cloud CMS, supporting antivirus scanning, metadata extraction, and more. (Gitana 4.0)

Score: 0.9796

Gitana 4.0 / Forms / API / Wizards

Documentation Reference

Create multi-step wizards effortlessly with Alpaca using customizable templates and configurations. (Gitana 4.0)

Score: 0.9784

Gitana 3.2 / Guide / Guide / User Interface / Projects / Configure Search

Documentation Reference

Optimize your project's search settings with customizable JSON descriptors and Cloud CMS integration. (Gitana 3.2)

Score: 0.9741

Gitana 3.2 / Guide / Guide / UI Developers Guide / Contexts / platform-manage-context

Documentation Reference

Manage platform settings, email, logo, services, themes, and more for owners, managers, and admins. Customize UI and manage deployments. (Gitana 4.0)

Score: 0.9741

Gitana 4.0 / Developers / User Interface Customization / Contexts / platform-manage-context

Documentation Reference

Manage platform settings, email, logo, services, themes, and more for owners, managers, and admins. Customize UI and manage deployments. (Gitana 4.0)

Score: 0.9741

Gitana 4.0 / User Interface / Projects / Configure Search

Documentation Reference

Optimize your Cloud CMS project search with configurable filters and a customizable search template. (Gitana 4.0)

Score: 0.9741

Gitana 4.0 / Reference / Types / Tenant

Documentation Reference

Explore our comprehensive guide on Tenant API integration, featuring methods, properties, and schemas. (Gitana 4.0)

Score: 0.9733

Gitana 3.2 / Guide / Guide / Features / Locked

Documentation Reference

Learn how node locking works, ensuring exclusive edits with ownership and permissions in a secure API environment. (Gitana 4.0)

Score: 0.9667

Gitana 4.0 / Content Engine / Aspects / Locked

Documentation Reference

Learn how node locking works, ensuring exclusive edits with ownership and permissions in a secure API environment. (Gitana 4.0)

Score: 0.9667

Pagination options

Support Article

You can specify pagination options in an optional second argument to the queryNodes function, basically like this: Chain(branch).queryNodes({  "_type": "video:essentials"  }, {  "sort": {  "title": -1  },  "limit": 10,  "skip": 30  }).then(function() {  ...  }); In this example, the results will start at index 30 in the record set and will contain the next 10 entries. The record set is sorted by "title" in a descending order ahead of being returned. If pagination sort isn't provided, then the o

Score: 0.9667

How to limit the fields that come back in a query

Support Article

Query API calls like http://api.cloudcms.com/docs#!/node/post_repositories_repositoryId_branches_branchId_nodes_query support a parameter named _fields which defines an object specifying the node properties you want to include in the result set for matching nodes. For example in the following query I want the title, subTitle and slug fields returned: { "_type":"my:article", "_fields":{ "title":1, "subTitle":1, "slug":1 } } The result set would look something like the

Score: 0.9667

Gitana 3.2 / Guide / Guide / Content Modeling / Relator Properties

Documentation Reference

Enhance your digital content with Cloud CMS, leveraging relator properties for seamless node relationships. (Gitana 3.2)

Score: 0.9602

Gitana 4.0 / Content Engine / Content Models / Relator Properties

Documentation Reference

Optimize content relationships with relator properties in Cloud CMS for dynamic, connected data management. (Gitana 4.0)

Score: 0.9602

Gitana 3.2 / Guide / Guide / Applications / Public Services

Documentation Reference

Streamline mobile and web app development with Cloud CMS services for user registration, password resets, and more. (Gitana 3.2)

Score: 0.9578

Gitana 3.2 / Guide / Guide / Application Server / Services / Insight

Documentation Reference

Monitor real-time analytics with Cloud CMS Insight, using socket connections to capture web app interactions efficiently. (Gitana 4.0)

Score: 0.9578

Gitana 3.2 / Guide / Guide / Integrations / Amazon Web Services / Amazon Transcribe

Documentation Reference

Seamlessly integrate Amazon Transcribe for effortless speech-to-text conversion in your applications using Cloud CMS. (Gitana 3.2)

Score: 0.9578

Gitana 4.0 / Developers / Application Server / Services / Insight

Documentation Reference

Monitor real-time analytics with Cloud CMS Insight, using socket connections to capture web app interactions efficiently. (Gitana 4.0)

Score: 0.9578

Gitana 4.0 / Content Engine / Integrations / Amazon Web Services / Amazon Transcribe

Documentation Reference

Enhance your app with Cloud CMS & Amazon Transcribe for seamless speech-to-text conversions and effortless content management. (Gitana 4.0)

Score: 0.9578

Gitana 4.0 / Content Engine / Platform / Applications / Public Services

Documentation Reference

Simplify user registration and password resets with Cloud CMS's convenient application services. (Gitana 4.0)

Score: 0.9578

Connecting via a Corporate Proxy

Support Article

The Cloud CMS drivers support connectivity through a corporate proxy. The means of doing so are slightly different depending on which driver you're using. Node.js The Cloud CMS Node.js driver detects the following environment variable: HTTP_PROXY If this environment variable is specified, all API calls with be routed through the proxy server at that location. This proxy server may support either HTTP or HTTPS. For example, you may set the environment variable like this: HTTP_PROXY=http://127.0.0

Score: 0.9578

How to get a content definition JSON from the Cloud CMS API?

Support Article

There are a couple of ways to do this. The first is simply use the node GET call and pass in the qname like this: GET /repositories/{repositoryId}/branches/{branchId}/nodes/{qname} http://api.cloudcms.com/docs#!/node/get_repositories_repositoryId_branches_branchId_nodes_nodeId This will give you back the JSON for the definition. Another way is to use this variation: GET /repositories/{repositoryId}/branches/{branchId}/definitions/{qname} http://api.cloudcms.com/docs#!/branch/get_repositories_rep

Score: 0.9578

How does multi-tenancy work?

Support Article

How does multi-tenancy work? ie I want to have multiple companies with sub-groups of users in each company - to follow, how would we customize the interface for each company? There are two good ways to achieve multi-tenancy with Cloud CMS. - One is to use multiple "projects" - i.e. one per customer. Each project has it's own domain of users and groups, as well as it's own content definitions, instances and ACLs. As such, you can use each project to store the content on a per-client basis. You ca

Score: 0.9561