Found 559 results for "gitana 4.0 developers api resources directory post-directories-directoryid-update"

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

Internationalization (I18N)

All of the content that you create within Cloud CMS supports localized translation. This is often referred to as internationalization (I18N) in the enterprise world. Cloud CMS has full support for localization so that any content you put into Cloud CMS supports multiple translation bundles. When content is retrieved from Cloud CMS, either through the APIs, the editorial interface or from your own applications, Cloud CMS respects the locale being requested and serves back a best-match fit for tha

Score: 1.004049

How to find the Repository ID for a Project?

There are a few ways to get the repository ID for a project. The easiest way is: log in to your tenant go to your Project add "/stack" to the url The "/stack" suffix will show you the members of the stack. If you then click on "workbench 'content' repository", you'll see the ID for the repository in the URL. Another way is to click on a document in your project and then click on "View in API". The URL that comes up will have the repository ID in it as well.

Score: 0.99810445

Gitana / 3.2 / Guide / Guide / Applications / Public Services / Reset Password Flow

Easily reset passwords for app users with Cloud CMS's secure flow using email or username recovery options.

Score: 0.9874104

Gitana / 4.0 / Content Engine / Platform / Applications / Public Services / Reset Password Flow

Easily reset passwords for app users with Cloud CMS's secure flow using email or username recovery options.

Score: 0.9874104

Gitana / 3.2 / Guide / Guide / Applications / Public Services / Setting up your Email Provider

Learn how to set up and test email providers for your app, configure settings, and use API methods effectively.

Score: 0.98382646

Gitana / 4.0 / Content Engine / Platform / Applications / Public Services / Setting up your Email Provider

Learn how to set up and test your email provider with API methods in Cloud CMS for seamless email dispatching within applications.

Score: 0.98382646

Gitana / 3.2 / Guide / Guide / UI Developers Guide / Contexts / deployment-subcontext

Explore deployment subcontext in detail, featuring overview, properties, API keys, and Amazon SNS insights for effective project management.

Score: 0.97860307

Gitana / 4.0 / Developers / User Interface Customization / Contexts / deployment-subcontext

Explore deployment subcontext in detail, featuring overview, properties, API keys, and Amazon SNS insights for effective project management.

Score: 0.97860307

Does Cloud CMS build my web site or mobile app for me?

No. Cloud CMS manages the backend lifecycle of your content and makes it available to your own applications via its REST API. You have to create your own applications (iOS, Android or web-based applications). Using our Partner network, Cloud CMS provides implementation services if you're looking for assistance with developing your front end applications, middleware or any custom data APIs. Cloud CMS also provides hosting for HTML5 applications and custom APIs within it's Node.js based applicatio

Score: 0.97860307

Gitana / 3.2 / Guide / Guide / Features / Locked

Learn how node locking ensures exclusive edit access with f:locked in your system, and discover configuration options and API usage details.

Score: 0.9507391

Gitana / 4.0 / Content Engine / Aspects / Locked

Learn how node locking ensures exclusive edit access with f:locked in your system, and discover configuration options and API usage details.

Score: 0.9507391

Gitana / 3.2 / Guide / Guide / Content Modeling / Default Paths

Create content paths easily with Cloud CMS. Use intuitive forms and dynamic templated variables for organized, SEO-friendly storage.

Score: 0.9497688

Gitana / 4.0 / Content Engine / Content Models / Default Paths

Optimize your content organization with dynamic paths and templates in Cloud CMS. Save documents in intuitive, SEO-friendly directories.

Score: 0.9497688

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

Optimize your project search page with customizable filters using Cloud CMS. Tailor search templates and configurations easily through the intuitive interface.

Score: 0.9480007

Gitana / 4.0 / User Interface / Projects / Configure Search

Customize your Cloud CMS project search with flexible filter settings for a tailored search experience using JSON descriptors.

Score: 0.9480007

Pagination options

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.9418004

How to limit the fields that come back in a query

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.9418004

The best way to enable content authoring with your JS framework

Now that you’ve built that beautiful application in Angular, Aurelia, Ember, React - or the next big JavaScript framework - how do make your content authors happy? Easy: Think Headless. Never let a CMS dictate your presentation tier options. The field is too crowded and is changing too rapidly for pre-ordained “templates” to suffice. Instead, crank out that prototype in your desired framework(s) and utilise REST calls to query content a simple mockup will do returning JSON for each node Then go

Score: 0.9418004

Gitana / 3.2 / Guide / Guide / Applications / Public Services

Simplify mobile and web app development with Cloud CMS's backend services for user registration, password resets, and more.

Score: 0.9330283

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

Optimize your web app's analytics with Cloud CMS Insight, seamlessly capturing data via web sockets into the Cloud CMS data warehouse.

Score: 0.9330283

Gitana / 4.0 / Developers / Application Server / Services / Insight

Optimize your web app's analytics with Cloud CMS Insight, seamlessly capturing data via web sockets into the Cloud CMS data warehouse.

Score: 0.9330283

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

Simplify mobile and web app development with Cloud CMS's backend services for user registration, password resets, and more.

Score: 0.9330283

Connecting via a Corporate Proxy

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.9330283

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

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.9330283

How does multi-tenancy work?

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.9303907