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": "6763b156-160b-478f-ab04-aed38d0e9249", "SegmentCategoryId": "7a43b02b-7b2c-4451-8993-39d071617feb", "DefaultSelectedSegmentIds": [ "4a40df20-a13a-43da-86e9-581f2d656b5a", "04ce134a-1eda-4741-b72a-e70621a4e72a" ] }
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>4a40df20-a13a-43da-86e9-581f2d656b5a</d2p1:guid> <d2p1:guid>04ce134a-1eda-4741-b72a-e70621a4e72a</d2p1:guid> </DefaultSelectedSegmentIds> <MemberId>sample string 1</MemberId> <OrgId>6763b156-160b-478f-ab04-aed38d0e9249</OrgId> <SegmentCategoryId>7a43b02b-7b2c-4451-8993-39d071617feb</SegmentCategoryId> </SegmentListRequestModel>
application/x-www-form-urlencoded
Sample:
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": "55a5519f-8caa-45d2-a516-2225e1fb3718", "SegmentCategoryId": "d5de48c8-993b-4131-b115-b64bda67fc34", "SelectedSegments": [ "f08c8f19-1035-457c-a146-8a0b7a6e5d5c", "2a99e22c-e89b-4ce6-b149-64e2ea5e9277" ], "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>55a5519f-8caa-45d2-a516-2225e1fb3718</OrgId> <SegmentCategoryId>d5de48c8-993b-4131-b115-b64bda67fc34</SegmentCategoryId> <SelectedSegments xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>f08c8f19-1035-457c-a146-8a0b7a6e5d5c</d2p1:guid> <d2p1:guid>2a99e22c-e89b-4ce6-b149-64e2ea5e9277</d2p1:guid> </SelectedSegments> </SelectedSegmentsResponseModel>