Application object.
Response wrapped in IResult
Removes an application with given id.
entity or id of the application.
Response wrapped in IResult
Gets the details of selected application.
Entity or Id of the entity.
Response wrapped in IResult
Gets the list of existing applications filtered by parameters.
Object containing filters for querying applications.
Response wrapped in IResultList
Gets a list as observable.
Object containing filters for querying
To configure the observable
Data wrapped as ObservableList
Updates existing application. Make sure that you specifiy the application id within the update object.
Application object.
Response wrapped in IResult
Generated using TypeDoc
Creates a new application.
const newApp = { name: 'New application', type: 'EXTERNAL', key: 'new-app' }; (async () => { const {data, res} = await applicationService.create(newApp); })();