POST account/error-report
Creates error report or ticket.
Request Information
URI
https://ofd-api.blueprintcpq.net/account/error-report
URI Parameters
None.
Body Parameters
The error report details.
CreateErrorReport| Name | Description | Type | Additional information |
|---|---|---|---|
| UserDetails | string |
None. |
|
| Message | string |
None. |
|
| LogId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserDetails": "sample string 1",
"Message": "sample string 2",
"LogId": "77d9fe6b-14d0-41cd-a1eb-27a6db852f37"
}
text/html
Sample:
{"UserDetails":"sample string 1","Message":"sample string 2","LogId":"77d9fe6b-14d0-41cd-a1eb-27a6db852f37"}
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>77d9fe6b-14d0-41cd-a1eb-27a6db852f37</LogId> <Message>sample string 2</Message> <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| Name | Description | Type | Additional 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>