POST api/v1/customers/multiple/tag

Request Information

URI Parameters

None.

Body Parameters

AssignTagToCustomersDto
NameDescriptionTypeAdditional 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": [
    "95737d02-0c93-4070-8548-b3370b7f3b25",
    "e6ac49aa-3cd3-4e23-99ae-01de102c707f"
  ],
  "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>95737d02-0c93-4070-8548-b3370b7f3b25</d2p1:guid>
    <d2p1:guid>e6ac49aa-3cd3-4e23-99ae-01de102c707f</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

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.