Skip to main content
POST
/
api
/
v1
/
admin
/
containers
/
{service}
/
stop
# Stop the Alfred worker
curl -X POST -H "Authorization: Bearer alf_your_key_here" \
  /api/v1/admin/containers/worker/stop

# Stop Temporal UI
curl -X POST -H "Authorization: Bearer alf_your_key_here" \
  /api/v1/admin/containers/temporal-ui/stop
{
  "message": "Container \"worker\" stopped"
}
Stop a running service on your Alfred instance. The service will remain stopped until you start it again.

Path Parameters

service
string
required
The service name to stop (e.g., “worker”, “openclaw”, “temporal”). Must contain only alphanumeric characters, hyphens, or underscores.
# Stop the Alfred worker
curl -X POST -H "Authorization: Bearer alf_your_key_here" \
  /api/v1/admin/containers/worker/stop

# Stop Temporal UI
curl -X POST -H "Authorization: Bearer alf_your_key_here" \
  /api/v1/admin/containers/temporal-ui/stop
{
  "message": "Container \"worker\" stopped"
}
Stopping the worker service will halt all Alfred daemons (curator, janitor, distiller). Stopping temporal will prevent workflow execution.