POST Error/Mark

Request Information

URI Parameters

None.

Body Parameters

DtoAddError
NameDescriptionTypeAdditional information
JobId

string

None.

ErrorType

string

None.

ErrorCategoryId

integer

None.

ErrorSubCategoryId

integer

None.

ErrorDescription

string

None.

Status

integer

None.

RecurringError

boolean

None.

SeriousError

boolean

None.

TemplateNeedsToBeFixed

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "JobId": "sample string 1",
  "ErrorType": "sample string 2",
  "ErrorCategoryId": 3,
  "ErrorSubCategoryId": 4,
  "ErrorDescription": "sample string 5",
  "Status": 6,
  "RecurringError": true,
  "SeriousError": true,
  "TemplateNeedsToBeFixed": true
}

application/xml, text/xml

Sample:
<DtoAddError xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Icodex.CQA.Interface.Business.Dtos.TaskContinue">
  <ErrorCategoryId>3</ErrorCategoryId>
  <ErrorDescription>sample string 5</ErrorDescription>
  <ErrorSubCategoryId>4</ErrorSubCategoryId>
  <ErrorType>sample string 2</ErrorType>
  <JobId>sample string 1</JobId>
  <RecurringError>true</RecurringError>
  <SeriousError>true</SeriousError>
  <Status>6</Status>
  <TemplateNeedsToBeFixed>true</TemplateNeedsToBeFixed>
</DtoAddError>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DtoAddError'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.