Update Current Team
PATCH /v2/partner/team
Required scopes
partner:team:write
Tokens missing any required scope return 401 scope_missing.
See Auth & Scopes for issuance.
Operation
| Operation ID | updateCurrentTeam |
| Tags | Operations |
Request body
Required
object
| Field | Type | Description |
|---|---|---|
| id * | string (uuid) | UUID v4. |
| type * | enum (1) | team |
| name * | string | |
| display_name | string | |
| status * | enum (3) | activesuspendedclosed |
| timezone * | string | IANA timezone identifier (e.g. America/Chicago). UTC offsets rejected. |
| inserted_at * | updated_at | RFC 3339 / ISO 8601 timestamp. |
| updated_at * | string (date-time) | RFC 3339 / ISO 8601 timestamp. |
Responses
200
OK
object
| Field | Type | Description |
|---|---|---|
| id * | string (uuid) | UUID v4. |
| type * | enum (1) | team |
| name * | string | |
| display_name | string | |
| status * | enum (3) | activesuspendedclosed |
| timezone * | string | IANA timezone identifier (e.g. America/Chicago). UTC offsets rejected. |
| inserted_at * | updated_at | RFC 3339 / ISO 8601 timestamp. |
| updated_at * | string (date-time) | RFC 3339 / ISO 8601 timestamp. |
Example request
PATCH https://api.digitalonboarding.com/v2/partner/team
Authorization: Bearer <partner-token>
Content-Type: application/json
Idempotency-Key: <uuid-v4>
{ /* request body matching schema above */ }