POST Offerings/Validate
Validate details to create one or more new offerings. See Validation.
Request Information
Request body type
Request body formats
application/json, text/json
Sample:
{
"SessionMachineCatalogId": "628fa898-0c36-4024-8fe4-d7e9a9bfbcfa",
"IsolationMode": "PrivateDeliveryGroup",
"Items": [
{
"Origin": "MachineImport",
"DiscoveredApplicationId": "1c58d824-2838-4c70-9a1f-348afb244157"
}
],
"Tags": [
"tag"
],
"CustomProperties": [
{
"Name": "myProperty",
"Value": "myValue"
}
],
"Comment": "Created by joe"
}
Response Information
See Validation.
Response type
ValidationResultModel<CreateOfferingModel>
Response body formats
application/json, text/json
Sample:
{
"Input": {
"SessionMachineCatalogId": "628fa898-0c36-4024-8fe4-d7e9a9bfbcfa",
"IsolationMode": "PrivateDeliveryGroup",
"Items": [
{
"Origin": "MachineImport",
"DiscoveredApplicationId": "1c58d824-2838-4c70-9a1f-348afb244157"
}
],
"Tags": [
"tag"
],
"CustomProperties": [
{
"Name": "myProperty",
"Value": "myValue"
}
],
"Comment": "Created by joe"
},
"Errors": [
{
"MemberNames": [
"IsolationMode"
],
"ErrorMessage": "Required",
"ErrorCode": "Required"
}
]
}