Update Tenant Account
Update a Tenant Account.
Tenant Admins may accept an invitation sent by an Infrastructure Provider by supplying tenantContactId.
Provider Admins may replace siteCapabilities to configure the Tenant Account default and overrides for specific Sites. When siteCapabilities is sent, it must be non-empty, include exactly one entry with empty or omitted siteIds, and must not repeat any siteId across entries. Requests containing both tenantContactId and siteCapabilities are rejected with 400.
Org must have a Tenant entity whose ID matches the tenantId of the Tenant Account object when accepting an invite. User must have authorization role with TENANT_ADMIN suffix to accept; PROVIDER_ADMIN suffix to update siteCapabilities. Tenant Admins can only update a Tenant Account that has Invited status.
Request body
Example request
{
"tenantContactId": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}Response
OK
Example response
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"infrastructureProviderId": "e94bcfda-f6cb-42e4-80ec-516811e5abbf",
"infrastructureProviderOrg": "xskkpgqpeakn",
"tenantId": "f97df110-f4de-492e-8849-4a6af68026b0",
"tenantOrg": "rf43bbtnb9c5",
"tenantContact": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"email": "janed@nvidia.com",
"firstName": "Jane",
"lastName": "Doe",
"created": "2019-08-24T14:15:22Z",
"updated": "2019-08-24T14:15:22Z"
},
"allocationCount": 0,
"status": "Ready",
"statusHistory": [
{
"status": "Ready",
"message": "Account ready, Tenant accepted invite",
"created": "2019-08-24T14:15:22Z",
"updated": "2019-08-24T14:15:22Z"
}
],
"siteCapabilities": [
{
"targetedInstanceCreation": true
}
],
"created": "2019-08-24T14:15:22Z",
"updated": "2019-08-24T14:15:22Z"
}