Delete Proof
DELETE/api/v1/proof/:proof_id/delete
Delete a specific proof.
Request​
Path Parameters
proof_id stringrequired
The UUID4 identifier associated with this proof.
Responses​
- 200
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
success Success (boolean)
Default value: true
{
"success": true
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
- MOD1
- MOD2
error Error (string)required
proof_idobjectrequired
anyOf
string
string
message Message (string)required
{
"error": "string",
"proof_id": "string",
"message": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error Error (string)required
message Message (string)
Default value: An internal error occurred.
{
"error": "string",
"message": "An internal error occurred."
}
Loading...