POST api/Segment/GetSelectedSegmentsForOrg
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": "7bb8d72d-57a7-4fab-af9d-7ee1ae7c1142", "SegmentCategoryId": "6df34727-cf90-4f22-abd6-828bcc027d42", "DefaultSelectedSegmentIds": [ "2051c535-cbf9-4393-89ad-ed99dffe8390", "a275be3f-a3f1-40d1-9de0-dadc12f4dee2" ] }
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>2051c535-cbf9-4393-89ad-ed99dffe8390</d2p1:guid> <d2p1:guid>a275be3f-a3f1-40d1-9de0-dadc12f4dee2</d2p1:guid> </DefaultSelectedSegmentIds> <MemberId>sample string 1</MemberId> <OrgId>7bb8d72d-57a7-4fab-af9d-7ee1ae7c1142</OrgId> <SegmentCategoryId>6df34727-cf90-4f22-abd6-828bcc027d42</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": "7fbf3bda-23ef-4da8-98ca-06c0ef5d51e9", "SegmentCategoryId": "b55fbb4c-e75f-4412-9320-a1e96a6d0f78", "SelectedSegments": [ "78fa8a0f-6dc3-4458-93cb-75eedf10d536", "49060539-a9c4-40a5-afdb-ed01435e3fee" ], "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>7fbf3bda-23ef-4da8-98ca-06c0ef5d51e9</OrgId> <SegmentCategoryId>b55fbb4c-e75f-4412-9320-a1e96a6d0f78</SegmentCategoryId> <SelectedSegments xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>78fa8a0f-6dc3-4458-93cb-75eedf10d536</d2p1:guid> <d2p1:guid>49060539-a9c4-40a5-afdb-ed01435e3fee</d2p1:guid> </SelectedSegments> </SelectedSegmentsResponseModel>