v48

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-305398191.8 KB
servers

Transfer a server

Move a server to another namespace. The caller must have server write access to both the source namespace and the destination namespace.

post/servers/{qualifiedName}/transfer

Path parameters

qualifiedNamestring required

The server's qualified name (e.g. 'namespace/server' or 'namespace' for namespace-only servers). Use %2F to encode the slash.

Request body

targetOrganizationIdstring required
targetNamespacestring required
targetSlugstring

Example request

{
  "targetOrganizationId": "org_01H1234567890",
  "targetNamespace": "my-team",
  "targetSlug": "weather"
}

Response

Server transferred

successboolean required
namespacestring required
serverstring required
qualifiedNamestring required

Example response

{
  "qualifiedName": "my-team/weather"
}