GET api/OfflineEnvironments/{id}
Returns a offline environment.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the offline environment to return. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
OfflineEnvironment| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The ID of the offline environment. |
globally unique identifier |
Required |
| TpmSupported |
Indicates if offline environment is for a TPM supported environment. |
boolean |
Required |
| EncryptedMasterEncryptionKey |
If TpmSupported is true, then this field is present and has a constant value of [EXPORTABLE] which indicates a master encryption key can be exported. |
string |
None. |
| EncryptedMasterEncryptionIv |
If TpmSupported is true, then this field is present and has a constant value of [EXPORTABLE] which indicates a master encryption IV can be exported. |
string |
Required |
| EncryptedEncryptionKey |
The encrypted offline environment encryption key. |
Collection of byte |
Required |
| Created |
The date when the offline environment was created (in the ISO 8601 format). |
date |
Required |
Status Codes
All HTTP status codes must be expected, but the following status codes are the most probable:
- OK (200) - The offline environment is found and returned.
- BadRequest (400) - The ID of an offline environment is invalid.
- NotFound (404) - The offline environment with the specified ID is not found.
Response Formats
application/json, text/json
{
"Id": "e0289f64-add4-4363-9d33-2d150225299b",
"TpmSupported": true,
"EncryptedMasterEncryptionKey": "sample string 3",
"EncryptedMasterEncryptionIv": "sample string 4",
"EncryptedEncryptionKey": "QEA=",
"Created": "2025-10-26T05:58:02.9952548+00:00"
}