GET api/CustomerFeedbackTask?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

CustomerFeedbackTaskDTO
NameDescriptionTypeAdditional 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.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CustomerID": 2,
  "RoleID": 3,
  "SystemUserID": 4,
  "Type": 1,
  "Status": 1,
  "DateSent": "2024-12-28T08:45:50.3208701+02:00",
  "DateResolved": "2024-12-28T08:45:50.3208701+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-28T08:45:50.3208701+02:00</DateResolved>
  <DateSent>2024-12-28T08:45:50.3208701+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>