added category list endpoint

This commit is contained in:
piratefinn 2018-01-15 14:19:16 +00:00
parent c4b5f8f91f
commit e64b6057e8

View file

@ -116,6 +116,17 @@ export class ApiService {
);
}
// Basic Customer User stats API
public categoryList() {
const key = this.sessionKey;
return this.http.post<any>(
this.apiUrl + '/search/category',
{
session_key : key,
}
);
}
// Searches organisations used for transaction submission
public search(data) {