POST api/Segment/GetSegments
Request Information
URI Parameters
None.
Body Parameters
SegmentListRequestModelName | Description | Type | Additional information |
---|---|---|---|
MemberId | string |
None. |
|
OrgId | globally unique identifier |
None. |
|
SegmentCategoryId | globally unique identifier |
None. |
|
DefaultSelectedSegmentIds | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "MemberId": "sample string 1", "OrgId": "167fbf21-02ed-4780-907e-817738216b45", "SegmentCategoryId": "30a09d6c-541e-4c61-b22a-2c7937271025", "DefaultSelectedSegmentIds": [ "01e621c7-4050-4c2c-9119-04eefd39e030", "a6ccd21e-04f8-41b1-884e-26b470c659cb" ] }
application/xml, text/xml
Sample:
<SegmentListRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bond.Core.API.Models.Request"> <DefaultSelectedSegmentIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>01e621c7-4050-4c2c-9119-04eefd39e030</d2p1:guid> <d2p1:guid>a6ccd21e-04f8-41b1-884e-26b470c659cb</d2p1:guid> </DefaultSelectedSegmentIds> <MemberId>sample string 1</MemberId> <OrgId>167fbf21-02ed-4780-907e-817738216b45</OrgId> <SegmentCategoryId>30a09d6c-541e-4c61-b22a-2c7937271025</SegmentCategoryId> </SegmentListRequestModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
SegmentListResponseModelName | Description | Type | Additional information |
---|---|---|---|
MemberId | string |
None. |
|
OrgId | globally unique identifier |
None. |
|
SegmentCategoryId | globally unique identifier |
None. |
|
SegmentsCount | integer |
None. |
|
SegmentsSelectedCount | integer |
None. |
|
Segments | Collection of SegmentDetail |
None. |
|
Result | ResponseResult |
None. |
Response Formats
application/json, text/json
Sample:
{ "MemberId": "sample string 1", "OrgId": "721405f9-b062-4674-82c9-f74262bbc669", "SegmentCategoryId": "df033a9b-55e2-491d-b6b3-f8b8ce1ab962", "SegmentsCount": 2, "SegmentsSelectedCount": 3, "Segments": [ { "Id": "4de54d4a-2d18-4dc5-82a6-a2f324d1d422", "Name": "sample string 2", "IsSelected": true }, { "Id": "4de54d4a-2d18-4dc5-82a6-a2f324d1d422", "Name": "sample string 2", "IsSelected": true } ], "Result": { "Success": true, "Message": "sample string 2", "Errors": [ { "Message": "sample string 1" }, { "Message": "sample string 1" } ] } }
application/xml, text/xml
Sample:
<SegmentListResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bond.Core.API.Models.Response"> <Result> <Errors> <ErrorMessage> <Message>sample string 1</Message> </ErrorMessage> <ErrorMessage> <Message>sample string 1</Message> </ErrorMessage> </Errors> <Message>sample string 2</Message> <Success>true</Success> </Result> <MemberId>sample string 1</MemberId> <OrgId>721405f9-b062-4674-82c9-f74262bbc669</OrgId> <SegmentCategoryId>df033a9b-55e2-491d-b6b3-f8b8ce1ab962</SegmentCategoryId> <Segments> <SegmentListResponseModel.SegmentDetail> <Id>4de54d4a-2d18-4dc5-82a6-a2f324d1d422</Id> <IsSelected>true</IsSelected> <Name>sample string 2</Name> </SegmentListResponseModel.SegmentDetail> <SegmentListResponseModel.SegmentDetail> <Id>4de54d4a-2d18-4dc5-82a6-a2f324d1d422</Id> <IsSelected>true</IsSelected> <Name>sample string 2</Name> </SegmentListResponseModel.SegmentDetail> </Segments> <SegmentsCount>2</SegmentsCount> <SegmentsSelectedCount>3</SegmentsSelectedCount> </SegmentListResponseModel>