DELETE/rateshop/{rateshopid}

Delete Rateshop

This API call enables you to delete a RateShop from your account. It accepts the rateshop ID as a parameter and returns the status of the request.
DELETE/rateshop/{rateshopid}

Parameter Details

NameInTypeRequiredDescription
rateshopidpathinteger(int32)Requirednone

Responses

StatusMeaningDescriptionSchema
200OKSuccessfully deleted
400Bad RequestBad Request
401UnauthorizedAuthentication Failed or Account validity expired
500Internal Server ErrorInternal server error

Example Request

const headers = {
  'Accept': 'application/json',
  'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
};

fetch('/api/v1/rateshop/{rateshopid}', {
  method: 'DELETE',
  headers: headers
})
.then(function(res) {
  return res.json();
}).then(function(body) {
  console.log(body);
});

Need Support?

Our team is here to help you integrate and make the most of our APIs. Get in touch for technical support, custom solutions, or any questions.