Skip to main content
DELETE
/
v1
/
agents
/
{agent_id}
/
mutations
/
{mutation_id}
Delete mutation
curl --request DELETE \
  --url https://api.coval.dev/v1/agents/{agent_id}/mutations/{mutation_id} \
  --header 'X-API-Key: <api-key>'
{
  "error": {
    "code": "UNAUTHENTICATED",
    "message": "Authentication failed",
    "details": [
      {
        "field": "X-API-Key",
        "description": "Invalid or missing API key"
      }
    ]
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Path Parameters

agent_id
string
required

Parent agent ID (22-character ShortUUID)

Pattern: ^[A-Za-z0-9]{22}$
mutation_id
string
required

Mutation ID (26-character ULID)

Pattern: ^[A-Za-z0-9]{26}$

Response

Mutation deleted successfully (or already deleted)