GET api/pinches/{id}/segments
Get Segment Groups with Segments by Pinch
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SegmentSelectionDto| Name | Description | Type | Additional 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": "d1f2168d-94a7-488c-a6c3-aaf2a6bd4ace",
"Name": "sample string 2",
"Segments": [
{
"Id": "c1b494c0-656b-4b76-9673-6672ee7d0c3d",
"Name": "sample string 2"
},
{
"Id": "c1b494c0-656b-4b76-9673-6672ee7d0c3d",
"Name": "sample string 2"
}
],
"IsExclude": true
},
{
"Id": "d1f2168d-94a7-488c-a6c3-aaf2a6bd4ace",
"Name": "sample string 2",
"Segments": [
{
"Id": "c1b494c0-656b-4b76-9673-6672ee7d0c3d",
"Name": "sample string 2"
},
{
"Id": "c1b494c0-656b-4b76-9673-6672ee7d0c3d",
"Name": "sample string 2"
}
],
"IsExclude": true
}
]