# reassignPartnerTeamOwner

Source: /openapi/thomas-federated.openapi.json

## Operation

| Method | URL |
|---|---|
| PUT | https://cxi-api-prod-weu-interim-eraffmdbdmdmbdfz.a01.azurefd.net/v1/partner/teams/implicit/{teamId}/reassign-owner |

| Field | Value |
|---|---|
| operationId | reassignPartnerTeamOwner |
| method | PUT |
| server | https://cxi-api-prod-weu-interim-eraffmdbdmdmbdfz.a01.azurefd.net/v1 |
| path | /partner/teams/implicit/{teamId}/reassign-owner |
| tags | `Teams` |
| summary | Reassign a manager-derived Team owner |
| badges | None |

## Request Parameters

| Name | In | Required | Schema | Description |
|---|---|---|---|---|
| teamId | path | true | string |  |

## Request Body

| Content type | Schema refs |
|---|---|
| application/json | #/components/schemas/ReassignTeamOwnerDto |

## Responses

| Status | Description | Schema refs |
|---|---|---|
| 200 | Manager-derived Team owner reassigned | #/components/schemas/ReassignPartnerTeamOwnerResponseDto |
| 400 | Invalid request payload or explicit Team | #/components/schemas/ApiErrorResponseDto |
| 401 | Invalid or missing authentication token | #/components/schemas/ApiErrorResponseDto |
| 403 | For an API client: not the tenant's active `teams` source of record (AUTH_SOURCE_OF_RECORD_REQUIRED), no active Grant carrying the required scopes on this tenant (AUTH_TENANT_NOT_GRANTED), or a caller whose kind this operation could not resolve | #/components/schemas/ApiErrorResponseDto |
| 404 | The external team reference is unknown in the calling API client's namespace for this tenant. Namespaces do not cross: the same value under another Tenant or another API client is a different key and never resolves here. | #/components/schemas/ApiErrorResponseDto |
| 429 | Rate limit exceeded. | #/components/schemas/ApiErrorResponseDto |

### Response 429 headers

| Name | Description | Schema |
|---|---|---|
| Retry-After | Seconds until the rate-limit block expires before retrying. | {"type":"integer","minimum":0} |
| RateLimit-Limit | Configured request limit for the active rate-limit window. | {"type":"integer"} |
| RateLimit-Remaining | Requests remaining in the active rate-limit window; zero when blocked. | {"type":"integer"} |
| RateLimit-Reset | Seconds until the rate-limit block expires. | {"type":"integer","minimum":0} |

## Artifact Examples

### Response 400 example

```json
{
  "statusCode": 400,
  "message": "Validation failed",
  "error": "HTTP_BAD_REQUEST"
}
```

### Response 401 example

```json
{
  "statusCode": 401,
  "message": "Invalid or missing authentication token",
  "error": "AUTH_TOKEN_INVALID"
}
```

### Response 403 example

```json
{
  "statusCode": 403,
  "message": "API client is not the source of record for this data domain in this tenant",
  "error": "AUTH_SOURCE_OF_RECORD_REQUIRED"
}
```

### Response 404 example

```json
{
  "statusCode": 404,
  "message": "No team matches this external team reference",
  "error": "PARTNER_TEAM_NOT_FOUND"
}
```

### Response 429 example

```json
{
  "statusCode": 429,
  "message": "ThrottlerException: Too Many Requests",
  "error": "HTTP_TOO_MANY_REQUESTS"
}
```
