Properties
| Name | Type | Description |
|---|---|---|
| accountMatch | boolean | `true` if the old `companyId` secret is matched with the new `companyId` secret. |
| externalTenantEnabled | boolean | `true` if the RedSky reseller customer is not under a Cisco account. |
| companyId | string | The RedSky held token from the secret response. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LoginResponse",
"title": "LoginResponse",
"type": "object",
"required": [
"accountMatch",
"externalTenantEnabled",
"companyId"
],
"properties": {
"accountMatch": {
"type": "boolean",
"example": true,
"description": "`true` if the old `companyId` secret is matched with the new `companyId` secret."
},
"externalTenantEnabled": {
"type": "boolean",
"example": true,
"description": "`true` if the RedSky reseller customer is not under a Cisco account."
},
"companyId": {
"type": "string",
"example": "ddd1424c-5b48-433d-9bab-061cdfb84c90",
"description": "The RedSky held token from the secret response."
}
}
}