inriverjs-geta
v2.1.0
Published
A wrapper for the InRiver REST API - Patch fork from github.com/adilkhali/InRiverJS
Downloads
10
Readme
inRiver JS
A simple wrapper for the inRiver IPMC REST API.
Installation
// npm
npm i inriverjs
// yarn
yarn add inriverjs
Usage
- Create the context with an initial setup of a key and Endpoint 👇
import InRiverAPIClient from "inriverjs/lib/index";
const inRiverApi = new InRiverAPIClient(
"YOUR-API-KEY-HERE",
"https://partnerapieuw.productmarketingcloud.com"
);
- 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.