GET Tenants({id})/DeliveryGroups({deliveryGroupId})/OfferingReferences

Get offerings associated with a delivery group. An offering is considered to be associated with a delivery group if the offering IsolationMode is SharedDeliveryGroup, and the delivery group is compatible with the offering. This means that all current and future tenants who subscribe to the offering will have their user sessions hosted on the delivery group.

Request Information

Parameters

NameDescriptionAdditional information
id

ID of the tenant associated with the offering.

Type: String

deliveryGroupId

ID of the delivery group.

Type:

name

See Filtering, Arranging, and Paging.

Type: String

skip

See Filtering, Arranging, and Paging.

Type: Number

take

See Filtering, Arranging, and Paging.

Type: Number

Response Information

A list of offering references.

Response type

CollectionResultModel<ReferenceModel>

Response body formats

application/json, text/json

Sample:
{
  "Href": "[api:Tenants({id})/DeliveryGroups({deliveryGroupId})/OfferingReferences]",
  "Count": 1,
  "TotalMatchingFilter": 1,
  "Items": [
    {
      "Href": "[api:Offerings(2f08f456-7ec8-4edc-866d-25037776ef4f)]",
      "Name": "Application",
      "Id": "2f08f456-7ec8-4edc-866d-25037776ef4f"
    }
  ]
}