url for the delete api
request object associated with the api
returns http response from the delete api
@example
delete('https://nice.dev.cxone.com/getUsers', {body: 'api_request_body'})
url for the api
request object associated with the api
boolean to enable measuring api latency
returns http response from the get api
@example
get('https://nice.dev.cxone.com/getUsers', {body: 'api_request_body'}, true)
Gets blob data from given url
url for the api
request object associated with the api
returns response from the get api
Used to handle the request via circuit breaker
url for the api
boolean to enable measuring api latency
Http response object
retry mechanism for failure scenarios
@example
const resp = this.handleResponse({status: 200, statusText: 'OK'}, {maxRetryAttempts: 3, retryInterval: 1000});
url for the patch api
request object associated with the api
returns http response from the patch api to update data
@example
patch('https://nice.dev.cxone.com/getUsers', {body: 'api_request_body'})
url for the post api
request object associated with the api
returns http response from the post api
@example
get('https://nice.dev.cxone.com/getUsers', {body: 'api_request_body'})
url for the put api
request object associated with the api
returns http response from the put api
@example
put('https://nice.dev.cxone.com/getUsers', {body: 'api_request_body'})
Generated using TypeDoc
Http Interface class for making api calls to backend