Delete Circuit
DELETE/api/v1/circuit/:circuit_id/delete
Delete a circuit.
Request​
Path Parameters
<CIRCUIT_ID>
- The unique UUID4 ID for an exact version of a compiled circuit.<CIRCUIT_NAME>
- The name of a circuit owned by the authenticated team. This will default to the most recent version of the circuit tagged aslatest
.<CIRCUIT_NAME>:<TAG>
- The name of a circuit owned by the authenticated team and an explicit tag. This corresponds to the most recent compilation of the circuit with the specified tag.<TEAM_NAME>/<CIRCUIT_NAME>
- The name of a circuit owned by the specified team. This will default to the most recent version of the circuit tagged aslatest
.<TEAM_NAME>/<CIRCUIT_NAME>:<TAG>
- The name of a circuit owned by a specified team and an explicit tag. This corresponds to the most recent compilation of the team's circuit with the specified tag.
circuit_id stringrequired
The circuit identifer of the circuit. This can take one of the following forms:
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
circuit_idobjectrequired
anyOf
string
string
message Message (string)required
{
"error": "string",
"circuit_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...