POST api/CustomerFeedbackTask/ComplexPost
Request Information
URI Parameters
None.
Body Parameters
Custom_CustomerFeedbackDTOName | Description | Type | Additional information |
---|---|---|---|
CustomerID | integer |
None. |
|
SystemUserIdList | Collection of integer |
None. |
|
RoleID | integer |
None. |
|
Type | integer |
None. |
|
Status | integer |
None. |
|
DateSent | date |
None. |
|
DateResolved | date |
None. |
|
Image | Collection of byte |
None. |
|
Comments | string |
None. |
|
ResolvedComments | string |
None. |
|
CustomerName | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "CustomerID": 1, "SystemUserIdList": [ 1, 2 ], "RoleID": 2, "Type": 3, "Status": 4, "DateSent": "2024-12-28T08:49:10.8884213+02:00", "DateResolved": "2024-12-28T08:49:10.8884213+02:00", "Image": "QEA=", "Comments": "sample string 6", "ResolvedComments": "sample string 7", "CustomerName": "sample string 8" }
application/xml, text/xml
Sample:
<Custom_CustomerFeedbackDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO"> <Comments>sample string 6</Comments> <CustomerID>1</CustomerID> <CustomerName>sample string 8</CustomerName> <DateResolved>2024-12-28T08:49:10.8884213+02:00</DateResolved> <DateSent>2024-12-28T08:49:10.8884213+02:00</DateSent> <Image>QEA=</Image> <ResolvedComments>sample string 7</ResolvedComments> <RoleID>2</RoleID> <Status>4</Status> <SystemUserIdList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </SystemUserIdList> <Type>3</Type> </Custom_CustomerFeedbackDTO>
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>