POST api/notification/ticket
Request Information
URI Parameters
None.
Body Parameters
TicketNotificationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| TicketId | integer |
None. |
|
| TicketContent | string |
None. |
|
| CustomerName | string |
None. |
|
| GroupId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TicketId": 1,
"TicketContent": "sample string 2",
"CustomerName": "sample string 3",
"GroupId": 4
}
application/xml, text/xml
Sample:
<NotificationController.TicketNotificationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Controllers"> <CustomerName>sample string 3</CustomerName> <GroupId>4</GroupId> <TicketContent>sample string 2</TicketContent> <TicketId>1</TicketId> </NotificationController.TicketNotificationDto>
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.