code-changes

Delete

POST
Deletes a code change object.

Request

This endpoint expects an object.
id
stringRequired
ID of the code change object which is to be deleted.

Response

This endpoint returns a map from strings to any
POST
1curl -X POST https://api.devrev.ai/code-changes.delete \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "id": "id"
6}'
200
Successful
1{
2 "string": {
3 "key": "value"
4 }
5}