Found 633 results for "gitana 4.0 developers api resources application delete-applications-applicationid"
The search executed in 0.002615003 seconds. That's fast.
![]() |
Gitana 3.2 / Guide / Guide / User Interface / Projects / Configure SearchOptimize your project search page with customizable filters using Cloud CMS. Tailor search templates and configurations easily through the intuitive interface.
Score: 0.9518952
|
![]() |
Gitana 4.0 / User Interface / Projects / Configure SearchCustomize your Cloud CMS project search with flexible filter settings for a tailored search experience using JSON descriptors.
Score: 0.9518952
|
![]() |
Pagination optionsYou 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.94552624
|
![]() |
How to limit the fields that come back in a queryQuery 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.94552624
|
![]() |
Gitana 3.2 / Guide / Guide / TransferEasily transfer, backup, and move data between Cloud CMS installations with a universal import-export facility, ensuring your data is portable and accessible.
Score: 0.94159234
|
![]() |
Gitana 4.0 / Content Engine / TransferEasily transfer, backup, and move data between Cloud CMS installations with a universal import-export facility, ensuring your data is portable and accessible.
Score: 0.94159234
|
![]() |
Connecting via a Corporate ProxyThe 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.93673146
|
![]() |
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.93673146
|
![]() |
Gitana 3.2 / Guide / Guide / Branches / ActionsConfigure automated actions for release events with JSON settings. Supports Send Email and Web Hook with variables like releaseId and branchId.
Score: 0.93061554
|
![]() |
Gitana 4.0 / Content Engine / Branches / ActionsOptimize your release management with configurable actions, variables, email, and web hooks. Tailor JSON settings for precise execution.
Score: 0.93061554
|
![]() |
Gitana 3.2 / Guide / Guide / Docker / Maintenance / Repository CompressionOptimize your Cloud CMS storage with repository compression, reducing database size and purging unnecessary historical data without losing essential content.
Score: 0.916018
|
![]() |
Gitana 4.0 / Self Managed / Maintenance / Repository CompressionOptimize your Cloud CMS storage with repository compression, reducing database size and purging unnecessary historical data without losing essential content.
Score: 0.916018
|
![]() |
Definitions for Date formatOur definitions are based on JSON schema and, as such, the default is to use strings for dates. The date controls in our forms engine let you customize the format string so that you can store ISO 8601 or other formats (perhaps simplified formats) as per your preference. The advantage here is simplicity with these controls and compatibility with JSON schema. The disadvantage is that MongoDB provides a lot of very powerful capabilities for range query and sorting that do not play as nicely with th
Score: 0.9145023
|
![]() |
Gitana 3.2 / Guide / Guide / Application Server / Authentication / Adapters / CustomCreate custom authentication adapters for Application Server with ease. Learn to implement and configure your solution effectively.
Score: 0.9122328
|
![]() |
Gitana 4.0 / Developers / Application Server / Authentication / Adapters / CustomCreate custom authentication adapters for your application server and seamlessly integrate third-party providers with ease.
Score: 0.9122328
|
![]() |
Gitana 3.2 / Guide / Guide / UI Developers Guide / Contexts / document-actionsEfficiently manage documents with multilingual, lock, or attachment features, allowing actions like lock, unlock, update, or download in the admin console.
Score: 0.9108913
|
![]() |
Gitana 4.0 / Developers / User Interface Customization / Contexts / document-actionsEfficiently manage documents with multilingual, lock, or attachment features, allowing actions like lock, unlock, update, or download in the admin console.
Score: 0.9108913
|
![]() |
Gitana 3.2 / Guide / Guide / General / Geolocation ServicesEffortlessly determine geographical information from IP addresses with Cloud CMS geolocation services and API integration.
Score: 0.9031296
|
![]() |
Gitana 3.2 / Guide / Guide / Integrations / Azure / Blob StorageExplore Azure Blob Storage with Cloud CMS integration for seamless content deployment and binary storage solutions on the cloud.
Score: 0.9031296
|
![]() |
Gitana 4.0 / Content Engine / General / Geolocation ServicesEffortlessly determine geographical information from IP addresses with Cloud CMS geolocation services and API integration.
Score: 0.9031296
|
![]() |
Gitana 4.0 / Content Engine / Integrations / Azure / Blob StorageExplore Azure Blob Storage, Microsoft's cloud solution for unstructured data, supporting image serving, file storage, and fast deployment with Cloud CMS.
Score: 0.9031296
|
![]() |
Gitana 3.2 / Guide / Guide / User Interface / MultilingualEnable efficient multilingual content management with Cloud CMS, facilitating seamless document translation and localization across different locales.
Score: 0.90080816
|
![]() |
Gitana 4.0 / User Interface / User Interface / MultilingualOptimize your content for global audiences with Cloud CMS's multilingual feature, allowing seamless translation and locale management.
Score: 0.90080816
|
![]() |
Gitana 4.0 / Content Engine / PublishingOptimize your content publishing with Cloud CMS, featuring configurable workflows, lifecycle states, and diverse deployment endpoints for seamless management.
Score: 0.8989376
|
![]() |
Directed and Undirected AssociationsCloud CMS has the notion of both directed and undirected associations. In the API and within the drivers, when you work with associations, you can query for associations that are "incoming" or "outgoing": These are both directed associations which are relative to a given node. Outgoing means start from this node and find associations pointing to another node. Incoming means find associations that point to me. It also supports the notion of "mutual" associations which are undirected. The source o
Score: 0.88721675
|