Skip to main content

Logout

GET 

https://api.mtrust.io/api/token/v1/logout

Endpoint to remove headers and cookie

Request

Responses

A status message
Schema
    string string
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.mtrust.io/api/token/v1/logout");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.mtrust.io
ResponseClear

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