UpdateSubscriptionModel

Details for updating a subscription.

Properties

NameDescription Additional information
Groups

List of all user groups from the tenant who should have access to the offering.

Any groups which were not in the subscription's groups before, and are included here, will be added. Any groups which were in the subscription's groups before, but are not included here, will be removed.

Type: Array of String

Tags

See Tags and Custom Properties.

Type: Array of String

CustomProperties

See Tags and Custom Properties.

Type: Array of CustomPropertyModel

Sample

application/json

Sample:
{
  "Groups": [
    "DOMAIN\\group1",
    "DOMAIN\\group2"
  ],
  "Tags": [
    "tag"
  ],
  "CustomProperties": [
    {
      "Name": "myProperty",
      "Value": "myValue"
    }
  ]
}