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.
CreateErrorReportName | 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": "ca73e645-7aba-4ce1-8560-6084b20ee0f6" }
text/html
Sample:
{"UserDetails":"sample string 1","Message":"sample string 2","LogId":"ca73e645-7aba-4ce1-8560-6084b20ee0f6"}
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>ca73e645-7aba-4ce1-8560-6084b20ee0f6</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.
SubmitTicketResponseName | 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>