PUT api/CustomerFeedbackTask?id={id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
CustomerFeedbackTaskDTOName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
CustomerID | integer |
None. |
|
RoleID | integer |
None. |
|
SystemUserID | integer |
None. |
|
Type | FeedbackType |
None. |
|
Status | CustomerFeedbackTaskStatus |
None. |
|
DateSent | date |
None. |
|
DateResolved | date |
None. |
|
Image | Collection of byte |
None. |
|
Comments | string |
None. |
|
ResolvedComments | string |
None. |
|
CustomerName | string |
None. |
|
StatusName | string |
None. |
|
TypeName | string |
None. |
|
SystemUserFullName | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ID": 1, "CustomerID": 2, "RoleID": 3, "SystemUserID": 4, "Type": 1, "Status": 1, "DateSent": "2024-12-28T09:04:38.6790216+02:00", "DateResolved": "2024-12-28T09:04:38.6790216+02:00", "Image": "QEA=", "Comments": "sample string 6", "ResolvedComments": "sample string 7", "CustomerName": "sample string 8", "StatusName": "sample string 9", "TypeName": "sample string 10", "SystemUserFullName": "sample string 11" }
application/xml, text/xml
Sample:
<CustomerFeedbackTaskDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO"> <Comments>sample string 6</Comments> <CustomerID>2</CustomerID> <CustomerName>sample string 8</CustomerName> <DateResolved>2024-12-28T09:04:38.6790216+02:00</DateResolved> <DateSent>2024-12-28T09:04:38.6790216+02:00</DateSent> <ID>1</ID> <Image>QEA=</Image> <ResolvedComments>sample string 7</ResolvedComments> <RoleID>3</RoleID> <Status>Pending</Status> <StatusName>sample string 9</StatusName> <SystemUserFullName>sample string 11</SystemUserFullName> <SystemUserID>4</SystemUserID> <Type>Order</Type> <TypeName>sample string 10</TypeName> </CustomerFeedbackTaskDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>