Delete a billing template by ID
https://gate.qorepay.com/api/v1/billing_templates/{id}
HEADER PARAMS
authorizationString
required
Set value to
BEARER SECRET_KEYcontent-typeString
required
Set value to
JSON
PATH PARAMS
idstring
required
ID associated with the billing template.
RESPONSES
204OK
Query
Javascript
  const options = {
    method: 'DELETE',
    headers: {
      accept: 'application/json'
    }
  };
  fetch('https://gate.qorepay.com/api/v1/billing_templates/{id}', options)
    .then(response => response.json())
    .then(response => console.log(response))
    .catch(err => console.error(err));
Sample Response
JSON
OK