Skip to main content

Unsubscribe from queue

DELETE 

https://stgapi.ctrackcrystal.co.za/api/Queue/Unsubscribe

Unsubscribe from queue

Request

Responses

Success
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://stgapi.ctrackcrystal.co.za/api/Queue/Unsubscribe");
var content = new StringContent("{\n \"queueType\": \"string\"\n}", null, "application/json-patch+json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://stgapi.ctrackcrystal.co.za/api
Body
{
  "queueType": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!