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": "230af504-e4d9-4ec5-9a16-c5753b181a38", "SegmentCategoryId": "e4ca8252-1d31-48a3-8da6-abe0b4d7e3d7", "DefaultSelectedSegmentIds": [ "ab6d6897-4c5c-44dd-8c78-ec91fc542e3a", "a8e6284b-e48f-4b21-95af-5c127d321478" ] }
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>ab6d6897-4c5c-44dd-8c78-ec91fc542e3a</d2p1:guid> <d2p1:guid>a8e6284b-e48f-4b21-95af-5c127d321478</d2p1:guid> </DefaultSelectedSegmentIds> <MemberId>sample string 1</MemberId> <OrgId>230af504-e4d9-4ec5-9a16-c5753b181a38</OrgId> <SegmentCategoryId>e4ca8252-1d31-48a3-8da6-abe0b4d7e3d7</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": "958cbd1c-ec3a-4144-bc5e-de9731606bb7", "SegmentCategoryId": "1af5cc2e-a2d7-42bd-817c-530358f28f86", "SelectedSegments": [ "0f442204-c916-4142-b98f-6a90c4e70b14", "7be7f4bd-a460-4132-9c30-2076959fe291" ], "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>958cbd1c-ec3a-4144-bc5e-de9731606bb7</OrgId> <SegmentCategoryId>1af5cc2e-a2d7-42bd-817c-530358f28f86</SegmentCategoryId> <SelectedSegments xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>0f442204-c916-4142-b98f-6a90c4e70b14</d2p1:guid> <d2p1:guid>7be7f4bd-a460-4132-9c30-2076959fe291</d2p1:guid> </SelectedSegments> </SelectedSegmentsResponseModel>