GET api/triggers/GetByCustomerGroupId?id={id}

Get all Triggers by customer group

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Customer Group ID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TriggerGroupDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

Triggers

Collection of TriggerDto

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "af4b8b72-9647-433f-ae53-1a17969ad0da",
    "Name": "sample string 2",
    "Triggers": [
      {
        "Id": "8f662db3-e663-430e-a5fe-44944824413e",
        "Name": "sample string 2"
      },
      {
        "Id": "8f662db3-e663-430e-a5fe-44944824413e",
        "Name": "sample string 2"
      }
    ]
  },
  {
    "Id": "af4b8b72-9647-433f-ae53-1a17969ad0da",
    "Name": "sample string 2",
    "Triggers": [
      {
        "Id": "8f662db3-e663-430e-a5fe-44944824413e",
        "Name": "sample string 2"
      },
      {
        "Id": "8f662db3-e663-430e-a5fe-44944824413e",
        "Name": "sample string 2"
      }
    ]
  }
]