Skip to main content
POST
/
qstash
/
move-to-team
Move QStash to Team
curl --request POST \
  --url https://api.upstash.com/v2/qstash/move-to-team \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "qstash_id": "<string>",
  "target_team_id": "<string>"
}
'
"OK"

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
qstash_id
string
required

ID of the QStash instance to move

target_team_id
string
required

ID of the target team

Response

200 - application/json

QStash moved successfully

The response is of type string.

Example:

"OK"