UNPKG

@kweli/cs-rest

Version:

Simple authentication and REST calls for OpenText Content Server.

11 lines (8 loc) 252 B
import ServiceAbstract from "./service-abstract"; class WebReports extends ServiceAbstract { run(dataid, params = {}) { const url = `api/v1/nodes/${dataid}/output`; return this.session.get(url, { params }); } } export default WebReports;