Skip to main content

Delete an Application Key

DELETE 

https://useast.api.elasticpath.com/v2/application-keys/:application_key_id

Delete an Application Key

Request

Path Parameters

    application_key_id stringrequired

    The id of the Application Key.

    Example: 0c45e4ec-26e0-4043-86e4-c15b9cf985a0

Responses

No Content

Authorization: http

name: bearerAuthtype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://useast.api.elasticpath.com/v2/application-keys/:application_key_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://useast.api.elasticpath.com
Auth
Parameters
— pathrequired
ResponseClear

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