POST api/qa/referr

Request Information

URI Parameters

None.

Body Parameters

Collection of QADto
NameDescriptionTypeAdditional information
EntityId

integer

None.

ReferredId

integer

None.

ReferrerId

integer

None.

Type

integer

None.

Comment

string

None.

Priority

integer

None.

DeadLine

date

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "EntityId": 1,
    "ReferredId": 2,
    "ReferrerId": 3,
    "Type": 4,
    "Comment": "sample string 5",
    "Priority": 6,
    "DeadLine": "2025-12-10T07:13:55.6861257+03:30"
  },
  {
    "EntityId": 1,
    "ReferredId": 2,
    "ReferrerId": 3,
    "Type": 4,
    "Comment": "sample string 5",
    "Priority": 6,
    "DeadLine": "2025-12-10T07:13:55.6861257+03:30"
  }
]

text/html

Sample:
[{"EntityId":1,"ReferredId":2,"ReferrerId":3,"Type":4,"Comment":"sample string 5","Priority":6,"DeadLine":"2025-12-10T07:13:55.6861257+03:30"},{"EntityId":1,"ReferredId":2,"ReferrerId":3,"Type":4,"Comment":"sample string 5","Priority":6,"DeadLine":"2025-12-10T07:13:55.6861257+03:30"}]

application/xml, text/xml

Sample:
<ArrayOfQaController.QADto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiQA.Controllers">
  <QaController.QADto>
    <Comment>sample string 5</Comment>
    <DeadLine>2025-12-10T07:13:55.6861257+03:30</DeadLine>
    <EntityId>1</EntityId>
    <Priority>6</Priority>
    <ReferredId>2</ReferredId>
    <ReferrerId>3</ReferrerId>
    <Type>4</Type>
  </QaController.QADto>
  <QaController.QADto>
    <Comment>sample string 5</Comment>
    <DeadLine>2025-12-10T07:13:55.6861257+03:30</DeadLine>
    <EntityId>1</EntityId>
    <Priority>6</Priority>
    <ReferredId>2</ReferredId>
    <ReferrerId>3</ReferrerId>
    <Type>4</Type>
  </QaController.QADto>
</ArrayOfQaController.QADto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DataResponse
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Data

Object

None.

Errors

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "Data": {},
  "Errors": [
    "sample string 1",
    "sample string 2"
  ]
}

text/html

Sample:
{"IsSuccess":true,"Data":{},"Errors":["sample string 1","sample string 2"]}

application/xml, text/xml

Sample:
<QaController.DataResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiQA.Controllers">
  <Data />
  <Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Errors>
  <IsSuccess>true</IsSuccess>
</QaController.DataResponse>