# Agentuity CLI Cloud Queue Destinations Update

> Update a destination. Requires authentication. Use for Agentuity cloud platform operations

- Skill: `agentuity-docs/agentuity-cli-cloud-queue-destinations-update` (Agent Skill)
- Install (CLI): `npx skillmds@latest add agentuity-docs/agentuity-cli-cloud-queue-destinations-update`
- Raw SKILL.md: https://api.skillmd.com/api/skills/agentuity-docs/agentuity-cli-cloud-queue-destinations-update/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- License: Apache-2.0
- Author: agentuity (https://skillmd.com/u/agentuity-docs)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/agentuity-docs/agentuity-cli-cloud-queue-destinations-update

---


# Cloud Queue Destinations Update

Update a destination

## Prerequisites

- Authenticated with `agentuity auth login`

## Usage

```bash
agentuity cloud queue destinations update <queue_name> <destination_id> [options]
```

## Arguments

| Argument | Type | Required | Description |
|----------|------|----------|-------------|
| `<queue_name>` | string | Yes | - |
| `<destination_id>` | string | Yes | - |

## Options

| Option | Type | Required | Default | Description |
|--------|------|----------|---------|-------------|
| `--url` | string | Yes | - | Webhook URL |
| `--method` | string | Yes | - | HTTP method |
| `--timeout` | number | Yes | - | Request timeout in milliseconds |
| `--enabled` | boolean | Yes | - | Enable the destination |
| `--disabled` | boolean | Yes | - | Disable the destination |

## Examples

Disable a destination:

```bash
bunx @agentuity/cli cloud queue destinations update my-queue dest_abc123 --disabled
```

## Output

Returns JSON object:

```json
{
  "id": "string",
  "queue_id": "string",
  "destination_type": "string",
  "config": "object",
  "enabled": "boolean",
  "stats": "object",
  "created_at": "string",
  "updated_at": "string"
}
```

| Field | Type | Description |
|-------|------|-------------|
| `id` | string | - |
| `queue_id` | string | - |
| `destination_type` | string | - |
| `config` | object | - |
| `enabled` | boolean | - |
| `stats` | object | - |
| `created_at` | string | - |
| `updated_at` | string | - |

