POST api/Tag/SaveTag
Request Information
URI Parameters
None.
Body Parameters
TagViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TagID | integer |
None. |
|
| TagName | string |
None. |
|
| DateCreated | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"tagID": 1,
"tagName": "sample string 2",
"dateCreated": "2025-12-09T23:01:47.8511607-05:00"
}
application/xml, text/xml
Sample:
<TagViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameTimeBAL.ViewModels"> <DateCreated>2025-12-09T23:01:47.8511607-05:00</DateCreated> <TagID>1</TagID> <TagName>sample string 2</TagName> </TagViewModel>
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.