GET api/customergroups

Get all customer groups

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerGroupDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

Required

Max length: 50

Customer

CustomerDto

None.

IsActive

boolean

None.

Settings

Collection of CustomerGroupSettingDto

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "2fab8215-4bd3-4a69-9c9f-e6f3f09811b4",
    "Name": "sample string 2",
    "Customer": {
      "Id": "6b65662a-c31d-42b6-a518-c57068ca10b0",
      "Name": "sample string 2"
    },
    "IsActive": true,
    "Settings": [
      {
        "Name": "EmbedReportUrl",
        "Value": "sample string 1"
      },
      {
        "Name": "EmbedReportUrl",
        "Value": "sample string 1"
      }
    ]
  },
  {
    "Id": "2fab8215-4bd3-4a69-9c9f-e6f3f09811b4",
    "Name": "sample string 2",
    "Customer": {
      "Id": "6b65662a-c31d-42b6-a518-c57068ca10b0",
      "Name": "sample string 2"
    },
    "IsActive": true,
    "Settings": [
      {
        "Name": "EmbedReportUrl",
        "Value": "sample string 1"
      },
      {
        "Name": "EmbedReportUrl",
        "Value": "sample string 1"
      }
    ]
  }
]