POST api/v1/customers/multiple/tag
Request Information
URI Parameters
None.
Body Parameters
AssignTagToCustomersDto| Name | Description | Type | Additional information |
|---|---|---|---|
| OrganizationCode | string |
None. |
|
| TagCode | string |
None. |
|
| TagName | string |
None. |
|
| CustomerIds | Collection of globally unique identifier |
None. |
|
| CreateSegment | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"organizationCode": "sample string 1",
"tagCode": "sample string 2",
"tagName": "sample string 3",
"customerIds": [
"44393dca-a64a-4c4e-8990-5974c0fc01ef",
"6872f974-c9bb-4ce5-9933-adc9321d2a2e"
],
"createSegment": true
}
application/xml, text/xml
Sample:
<AssignTagToCustomersDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.Services.Dtos.Tags">
<CreateSegment>true</CreateSegment>
<CustomerIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>44393dca-a64a-4c4e-8990-5974c0fc01ef</d2p1:guid>
<d2p1:guid>6872f974-c9bb-4ce5-9933-adc9321d2a2e</d2p1:guid>
</CustomerIds>
<OrganizationCode>sample string 1</OrganizationCode>
<TagCode>sample string 2</TagCode>
<TagName>sample string 3</TagName>
</AssignTagToCustomersDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.