POST
/
redis
/
move-to-team
Move To Team
curl --request POST \
  --url https://api.upstash.com/v2/redis/move-to-team \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "team_id": "<string>",
  "database_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

Response

200 - application/json

Database moved successfully

The response is of type string.

Example:

"OK"