POST Update/ErrorData

Request Information

URI Parameters

None.

Body Parameters

DtoErrorUpdate
NameDescriptionTypeAdditional information
Id

integer

None.

JobId

string

None.

ErrorType

string

None.

ErrorCategoryId

integer

None.

ErrorSubCategoryId

integer

None.

ErrorDescription

string

None.

RecurringError

boolean

None.

SeriousError

boolean

None.

TemplateNeedsToBeFixed

boolean

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

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

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 'DtoErrorUpdate'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.