All Projects → amplience → Dc Management Sdk Js

amplience / Dc Management Sdk Js

Licence: other
Amplience Dynamic Content Management SDK

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Dc Management Sdk Js

Dc Delivery Sdk Js
Official Javascript SDK for the Amplience Dynamic Content Delivery API
Stars: ✭ 51 (+8.51%)
Mutual labels:  content-management, headless-cms, sdk
Spring Content
Cloud-Native Storage and Enterprise Content Services (ECMS) for Spring
Stars: ✭ 151 (+221.28%)
Mutual labels:  content-management, headless-cms
Contentful.swift
A delightful Swift interface to Contentful's content delivery API.
Stars: ✭ 132 (+180.85%)
Mutual labels:  content-management, sdk
vaahcms
VaahCMS is a laravel based open-source web application development platform shipped with a headless content management system (CMS).
Stars: ✭ 56 (+19.15%)
Mutual labels:  content-management, headless-cms
Strapi Sdk Javascript
🔌 Official JavaScript SDK for APIs built with Strapi.
Stars: ✭ 247 (+425.53%)
Mutual labels:  headless-cms, sdk
Daptin
Daptin - Backend As A Service - GraphQL/JSON-API Headless CMS
Stars: ✭ 1,195 (+2442.55%)
Mutual labels:  content-management, headless-cms
Unite Cms
Really flexible headless CMS, built on top of Symfony and GraphQL.
Stars: ✭ 242 (+414.89%)
Mutual labels:  content-management, headless-cms
Kirby
Kirby's core application folder
Stars: ✭ 436 (+827.66%)
Mutual labels:  content-management, headless-cms
contentful.net
.NET Library for Contentful's Content Delivery and Management API
Stars: ✭ 75 (+59.57%)
Mutual labels:  content-management, headless-cms
laravel-storyblok
Make Laravel and Storyblok work together beautifully.
Stars: ✭ 45 (-4.26%)
Mutual labels:  content-management, headless-cms
Sdk Js
Directus JS SDK — JavaScript Software Development Kit for Node and Browser
Stars: ✭ 117 (+148.94%)
Mutual labels:  headless-cms, sdk
App
Directus Admin Application — An Intuitive WebApp for Managing Database Content
Stars: ✭ 464 (+887.23%)
Mutual labels:  headless-cms, sdk
Strapi
🚀 Open source Node.js Headless CMS to easily build customisable APIs
Stars: ✭ 41,786 (+88806.38%)
Mutual labels:  headless-cms, content-management
Contentful Management.js
JavaScript library for Contentful's Management API (node & browser)
Stars: ✭ 160 (+240.43%)
Mutual labels:  content-management, sdk
pageflo
A new super flexible open source CMS
Stars: ✭ 34 (-27.66%)
Mutual labels:  content-management, headless-cms
Flextype
Hybrid Content Management System with the freedom of a headless CMS and with the full functionality of a traditional CMS
Stars: ✭ 436 (+827.66%)
Mutual labels:  content-management, headless-cms
Simpla
Open, modular, and serverless content management for a modern web
Stars: ✭ 534 (+1036.17%)
Mutual labels:  content-management, sdk
Connector Sdk
SDK for connecting events to functions
Stars: ✭ 41 (-12.77%)
Mutual labels:  sdk
Soflow
A ScriptableObject oriented design SDK.
Stars: ✭ 43 (-8.51%)
Mutual labels:  sdk
Canvaz
𝌕 Visual component-based content editor for React
Stars: ✭ 40 (-14.89%)
Mutual labels:  content-management

Amplience Dynamic Content

dc-management-sdk-js

Official Javascript SDK for the Amplience Dynamic Content API

Build Status npm version

The management sdk is designed to help build back-office applications such as content automation or web-hook integrations. Please keep in mind the management api is rate limited.

Installation

Using npm:

npm install dc-management-sdk-js --save

Usage

This sdk can be used with both typescript running on Node.js or regular Javascript running on Node.js. TypeScript type definition files are bundled with the library along with precompiled Javascript versions of all TypeScript classes.

TypeScript

import {DynamicContent} from "dc-management-sdk-js";

Node.js

var dc = require('dc-management-sdk-js');

Authentication

The content management API uses OAuth 2 to authenticate requests. When creating an API client you can provide your API key and secret and the client will handle creating authentication tokens.

For assistance creating API credentials and configuring permissions please contact Amplience Support.

const client = new DynamicContent({
    client_id: process.env.CLIENT_ID,
    client_secret: process.env.CLIENT_SECRET
});

OR

var client = new dc.DynamicContent({
    client_id: process.env.CLIENT_ID,
    client_secret: process.env.CLIENT_SECRET
});

Making requests

The most common top level resources (such as Hub and ContentItem) can be requested directly by calling the appropriate method on the client instance. This will return a native promise that will yield the resource or an error (e.g. if you do not have permission to access the resource).

var hubs = client.hubs.list();
var hub = client.hubs.get('<HUB-ID>');
var event = client.events.get('<EVENT-ID>');
var edition = client.editions.get('<EDITION-ID>');
var contentItem = client.contentItems.get('<CONTENT-ITEM-ID>');

Once you have a top-level resource, you can lookup related resources and perform related actions by calling one of the methods under the “related” object. Each resource has a different set of related resources and actions.

var contentRepositories = hub.related.contentRepositories.list();
var editionEvent = edition.related.event();
var contentItemVersion2 = contentItem.related.contentItemVersion(2);

Example

import {DynamicContent, Event} from "dc-management-sdk-js";
    
async function createEvent() {
    
    const client = new DynamicContent({
        client_id: process.env.CLIENT_ID,
        client_secret: process.env.CLIENT_SECRET
    });
    
    const hubs = await client.hubs.list();
    const hub = hubs.getItems()[0];
    
    let event = new Event();
    event.name = 'happy new year';
    event.start = '2019-01-01T00:00:00.000Z';
    event.end = '2019-01-01T23:59:59.999Z';
    
    event = await hub.related.events.create(event);
    
    console.log(event);

};
    
createEvent();

OR

var dc = require('dc-management-sdk-js');
    
function createEvent() {
        
    var client = new dc.DynamicContent({
        client_id: process.env.CLIENT_ID,
        client_secret: process.env.CLIENT_SECRET
    });
    
    client.hubs.list()
        .then(function(hubs) {
            var hub = hubs.getItems()[0];
            
            var event = new dc.Event();
            event.name = 'happy new year';
            event.start = '2019-01-01T00:00:00.000Z';
            event.end = '2019-01-01T23:59:59.999Z';
            
            return hub.related.events.create(event);
        })
        .then(function(event) {
            console.log(event);
        });
}
    
createEvent();

Documentation

Please use the following documentation resources to assist building your application:

Getting Help

If you need help using the sdk please reach out using one of the following channels:

License

This software is licensed under the Apache License, Version 2.0,

Copyright 2018 Amplience

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].