POST api/v1/tags
Request Information
URI Parameters
None.
Body Parameters
TagDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
Name | string |
None. |
|
Code | string |
None. |
|
TagGroupCode | string |
None. |
|
TagGroupName | string |
None. |
|
TagTypeCode | string |
None. |
|
TagTypeName | string |
None. |
|
OrderInTagGroup | integer |
None. |
|
IsNegable | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "id": "854ca5c0-c48e-4bf9-8a4d-9cdcad03594e", "name": "sample string 1", "code": "sample string 2", "tagGroupCode": "sample string 3", "tagGroupName": "sample string 4", "tagTypeCode": "sample string 5", "tagTypeName": "sample string 6", "orderInTagGroup": 7, "isNegable": true }
application/xml, text/xml
Sample:
<TagDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos"> <Code>sample string 2</Code> <Id>854ca5c0-c48e-4bf9-8a4d-9cdcad03594e</Id> <IsNegable>true</IsNegable> <Name>sample string 1</Name> <OrderInTagGroup>7</OrderInTagGroup> <TagGroupCode>sample string 3</TagGroupCode> <TagGroupName>sample string 4</TagGroupName> <TagTypeCode>sample string 5</TagTypeCode> <TagTypeName>sample string 6</TagTypeName> </TagDto>
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.