GET api/pinches/{id}/segments

Get Segment Groups with Segments by Pinch

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of SegmentSelectionDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

Segments

Collection of SegmentDto

None.

IsExclude

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "7861a616-c5e9-4a5d-ac16-c960c589dc34",
    "Name": "sample string 2",
    "Segments": [
      {
        "Id": "9a51613b-1e7a-410f-b3ab-c9eb9476492f",
        "Name": "sample string 2"
      },
      {
        "Id": "9a51613b-1e7a-410f-b3ab-c9eb9476492f",
        "Name": "sample string 2"
      }
    ],
    "IsExclude": true
  },
  {
    "Id": "7861a616-c5e9-4a5d-ac16-c960c589dc34",
    "Name": "sample string 2",
    "Segments": [
      {
        "Id": "9a51613b-1e7a-410f-b3ab-c9eb9476492f",
        "Name": "sample string 2"
      },
      {
        "Id": "9a51613b-1e7a-410f-b3ab-c9eb9476492f",
        "Name": "sample string 2"
      }
    ],
    "IsExclude": true
  }
]