Code Monkey home page Code Monkey logo

inriverjs's Introduction

inRiver JS

A simple wrapper for the inRiver IPMC REST API.

Installation

// npm
npm i inriverjs

// yarn
yarn add inriverjs

Usage

  1. Create the context with an initial setup of a key and Endpoint ๐Ÿ‘‡
import InRiverAPIClient from "inriverjs";

const inRiverApi = new InRiverAPIClient(
  "YOUR-API-KEY-HERE",
  "https://partnerapieuw.productmarketingcloud.com"
);
  1. Use the API ๐Ÿ‘Œ
inRiverApi.Model.getCVLValue("ActivityStatus")
.then((result) => {
    console.log(result.data);
});

Examples

Display all Roles in the IPMC environment:

inRiverApi.System.Roles()
    .then((result) => {
        result.data.forEach((role) => {
            console.log(role.name);
            console.log(role.description);
        });
    }).catch((error) => {
        console.error(error);
    });

Get entity summary:

inRiverApi.Entities.GetEntitySummary(1)
    .then((result) => {
        console.log(result.data.createdBy);
        console.log(result.data.displayName);
    }).catch((error) => {
        console.error(error);
    });

Buy Me A Coffee

If you would like to support me for more inRiver Open Source tools.

Buy Me A Coffee

inriverjs's People

Contributors

adilkhali avatar dependabot[bot] avatar

Stargazers

Roman avatar  avatar  avatar Jeremy Hunt avatar Steven Christensen avatar  avatar

Watchers

James Cloos avatar

inriverjs's Issues

Wrong method for /api/v1.0.0/entities/11642/fieldvalues

This is defined as POST method in Entity class, and this should be PUT method. This method is problematic:

  public SetFieldValues(entityId: number, fieldValueModels: IFieldValueModel[]): AxiosPromise<IFieldValueModel> {
    return this.request.getInstance().post(`entities/${entityId}/fieldvalues`, fieldValueModels);
  }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.