POST api/Segment/GetSelectedSegmentsForMember
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": "85b288f6-3825-4cd0-9fb3-43866298d606", "SegmentCategoryId": "26e54a5b-219b-4b56-a064-2468b0f40b58", "DefaultSelectedSegmentIds": [ "5a39dc1a-0027-43aa-99af-c0cf47dff59d", "81c07c5c-df12-4787-b074-826525cb709a" ] }
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>5a39dc1a-0027-43aa-99af-c0cf47dff59d</d2p1:guid> <d2p1:guid>81c07c5c-df12-4787-b074-826525cb709a</d2p1:guid> </DefaultSelectedSegmentIds> <MemberId>sample string 1</MemberId> <OrgId>85b288f6-3825-4cd0-9fb3-43866298d606</OrgId> <SegmentCategoryId>26e54a5b-219b-4b56-a064-2468b0f40b58</SegmentCategoryId> </SegmentListRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SelectedSegmentsResponseModelName | Description | Type | Additional information |
---|---|---|---|
MemberId | string |
None. |
|
OrgId | globally unique identifier |
None. |
|
SegmentCategoryId | globally unique identifier |
None. |
|
SelectedSegments | Collection of globally unique identifier |
None. |
|
Result | ResponseResult |
None. |
Response Formats
application/json, text/json
Sample:
{ "MemberId": "sample string 1", "OrgId": "3fb9b636-8ec6-433c-8609-4681cd14d255", "SegmentCategoryId": "ce6af349-305c-4e4a-b56e-aa46f269046f", "SelectedSegments": [ "6340db9e-6f35-4644-9b1e-12c1d804d1aa", "26877737-309d-4a5e-984d-f8914af1edc9" ], "Result": { "Success": true, "Message": "sample string 2", "Errors": [ { "Message": "sample string 1" }, { "Message": "sample string 1" } ] } }
application/xml, text/xml
Sample:
<SelectedSegmentsResponseModel 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>3fb9b636-8ec6-433c-8609-4681cd14d255</OrgId> <SegmentCategoryId>ce6af349-305c-4e4a-b56e-aa46f269046f</SegmentCategoryId> <SelectedSegments xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>6340db9e-6f35-4644-9b1e-12c1d804d1aa</d2p1:guid> <d2p1:guid>26877737-309d-4a5e-984d-f8914af1edc9</d2p1:guid> </SelectedSegments> </SelectedSegmentsResponseModel>