POST account/error-report

Creates error report or ticket.

Request Information

URI

https://scoregroup-uat-api.xaitcpq.net/account/error-report

URI Parameters

None.

Body Parameters

The error report details.

CreateErrorReport
NameDescriptionTypeAdditional information
UserDetails

string

None.

Message

string

None.

URL

string

None.

LogId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "UserDetails": "sample string 1",
  "Message": "sample string 2",
  "URL": "sample string 3",
  "LogId": "ad87acf6-e55e-4210-901e-dee14c637fa5"
}

text/html

Sample:
{"UserDetails":"sample string 1","Message":"sample string 2","URL":"sample string 3","LogId":"ad87acf6-e55e-4210-901e-dee14c637fa5"}

application/xml, text/xml

Sample:
<CreateErrorReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels">
  <LogId>ad87acf6-e55e-4210-901e-dee14c637fa5</LogId>
  <Message>sample string 2</Message>
  <URL>sample string 3</URL>
  <UserDetails>sample string 1</UserDetails>
</CreateErrorReport>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The new error report or ticket.

SubmitTicketResponse
NameDescriptionTypeAdditional information
TicketUrl

string

None.

TicketId

string

None.

IsSuccess

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "TicketUrl": "sample string 1",
  "TicketId": "sample string 2",
  "IsSuccess": true
}

text/html

Sample:
{"TicketUrl":"sample string 1","TicketId":"sample string 2","IsSuccess":true}

application/xml, text/xml

Sample:
<SubmitTicketResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.Responses">
  <IsSuccess>true</IsSuccess>
  <TicketId>sample string 2</TicketId>
  <TicketUrl>sample string 1</TicketUrl>
</SubmitTicketResponse>