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"
}
]
}
}Delete a 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"
}
]
}
}API key for authentication
Parent agent ID (22-character ShortUUID)
^[A-Za-z0-9]{22}$Mutation ID (26-character ULID)
^[A-Za-z0-9]{26}$Mutation deleted successfully (or already deleted)
Was this page helpful?