Skip to main content

Delete app configuration

Delete an application configuration and associated data

Request

Method: DELETE
Path: /app-configs/{id}

Authentication: Not required

Parameters

NameTypeInRequiredDescription
idstringpathYes

Responses

200 - Configuration deleted successfully

Examples

cURL

curl -X DELETE \
-H "Content-Type: application/json" \
http://localhost:3000/app-configs/{id}

JavaScript

const response = await fetch('http://localhost:3000/app-configs/{id}', {
method: 'DELETE',
headers: {
'Content-Type': 'application/json',
},
});

const data = await response.json();
console.log(data);

This documentation is automatically generated from the OpenAPI specification.