# Move QStash to Team

> Moves a QStash instance to a different team.

## Endpoint

`POST https://api.upstash.com/v2/qstash/move-to-team`

## Request body

- `qstash_id` (string, required): ID of the QStash instance to move
- `target_team_id` (string, required): ID of the target team

## Responses

### 200 - QStash moved successfully


## cURL

```bash
curl --request POST \
  --url https://api.upstash.com/v2/qstash/move-to-team \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "qstash_id": "<qstash_id>",
    "target_team_id": "<target_team_id>"
  }'
```
