Skip to main content
DELETE
/
v1
/
agents
/
{agentId}
/
stages
/
{stageId}
Eliminar un stage del blueprint
curl --request DELETE \
  --url https://agents.studio.getsupervisor.ai/v1/agents/{agentId}/stages/{stageId} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-workspace-id: <x-workspace-id>'
{
  "code": "STAGE_NOT_FOUND",
  "message": "El stage indicado no existe"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-workspace-id
string<uuid>
required

Identificador del workspace multi-tenant.

Path Parameters

agentId
string<uuid>
required

Identificador del agente

stageId
string<uuid>
required

Identificador del stage dentro del blueprint del agente

Response

Stage eliminado correctamente