POST api/v1/customers/{customerId}/tags
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId | globally unique identifier |
Required |
Body Parameters
AssignTagToCustomerDto| Name | Description | Type | Additional information |
|---|---|---|---|
| OrganizationCode | string |
None. |
|
| TagCode | string |
None. |
|
| CustomerId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"organizationCode": "sample string 1",
"tagCode": "sample string 2",
"customerId": "183696c7-2d00-4d4a-bfd1-9df8d8607110"
}
application/xml, text/xml
Sample:
<AssignTagToCustomerDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.Services.Dtos.Tags"> <CustomerId>183696c7-2d00-4d4a-bfd1-9df8d8607110</CustomerId> <OrganizationCode>sample string 1</OrganizationCode> <TagCode>sample string 2</TagCode> </AssignTagToCustomerDto>
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.