Skip to main content

Delete an API token

DELETE 

https://api.aleph-alpha.com/users/me/tokens/:token_id

Delete an API token

Request

Path Parameters

    token_id int32required

    API token ID

Responses

No Content

Authorization: http

name: tokentype: httpscheme: bearerdescription: Can be generated in your [Aleph Alpha profile](https://app.aleph-alpha.com/profile)
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://api.aleph-alpha.com/users/me/tokens/:token_id");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.aleph-alpha.com
Auth
Parameters
— pathrequired
ResponseClear

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