POST api/userTips
Request Information
URI Parameters
None.
Body Parameters
UserTipEntityName | Description | Type | Additional information |
---|---|---|---|
id | integer |
None. |
|
userId | string |
None. |
|
tipId | integer |
None. |
|
tip | TipEntity |
None. |
Request Formats
application/json, text/json
Sample:
{ "id": 1, "userId": "sample string 2", "tipId": 3, "tip": { "id": 1, "tipName": "sample string 2", "tipTypeId": 3, "route": "sample string 4", "tipText": "sample string 5" } }
application/xml, text/xml
Sample:
<UserTipEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OHS.TLMClassroomResponder.BusinessEntity"> <id>1</id> <tip> <id>1</id> <route>sample string 4</route> <tipName>sample string 2</tipName> <tipText>sample string 5</tipText> <tipTypeId>3</tipTypeId> </tip> <tipId>3</tipId> <userId>sample string 2</userId> </UserTipEntity>
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.