DELETE item
Profiles are deleted asynchroniously. The response will be a 202 Accepted status code.
Request parameters
curl -X DELETE \
-H 'X-EchonovumApi-Key: YOUR_API_KEY' \
-H 'Content-Type: application/vnd.api+json' \
https://api.echonovum.com/en/v1/profiles/57b897f8-53fa-11ea-b2a4-0242ac120006
const API_KEY = process.env.ECHONOVUM_API_KEY;
const response = await fetch('https://api.echonovum.com/en/v1/profiles/57b897f8-53fa-11ea-b2a4-0242ac120006', {
method: 'DELETE',
headers: {
'X-EchonovumApi-Key': API_KEY,
'Content-Type': 'application/vnd.api+json'
}
});
Responses
null
Last modified: 27 May 2024