POST | /errors/ | Save error to log |
---|
import Foundation
import ServiceStack
public class CreateError : ICompany, Codable
{
/**
* The company id, if empty will use the company id for the user you are logged in with.
*/
// @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.")
public var companyId:String?
/**
*
*/
// @ApiMember(Description="", IsRequired=true)
public var exceptionName:String
/**
*
*/
// @ApiMember(Description="", IsRequired=true)
public var exceptionMessage:String
/**
*
*/
// @ApiMember(Description="")
public var exceptionSource:String
/**
*
*/
// @ApiMember(Description="", IsRequired=true)
public var innerExceptionName:String
/**
*
*/
// @ApiMember(Description="", IsRequired=true)
public var stackTrace:String
/**
*
*/
// @ApiMember(Description="", IsRequired=true)
public var url:String
/**
*
*/
// @ApiMember(Description="")
public var loggedInUser:String
/**
*
*/
// @ApiMember(Description="")
public var ipAddress:String
/**
*
*/
// @ApiMember(Description="")
public var request:String
/**
*
*/
// @ApiMember(Description="")
public var session:String
required public init(){}
}
public class ErrorQueryResponse : Codable
{
public var companyId:String
public var id:Int
public var exceptionName:String
public var exceptionMessage:String
public var exceptionSource:String
public var innerExceptionName:String
public var stackTrace:String
public var url:String
public var loggedInUser:String
public var visible:Bool
public var ipAddress:String
public var createdDate:Date
public var request:String
public var session:String
required public init(){}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /errors/ HTTP/1.1
Host: api.bokamera.se
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"CompanyId":"00000000-0000-0000-0000-000000000000","ExceptionName":"String","ExceptionMessage":"String","ExceptionSource":"String","InnerExceptionName":"String","StackTrace":"String","URL":"String","LoggedInUser":"String","IPAddress":"String","Request":"String","Session":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"Id":0,"ExceptionName":"String","ExceptionMessage":"String","ExceptionSource":"String","InnerExceptionName":"String","StackTrace":"String","URL":"String","LoggedInUser":"String","Visible":false,"IPAddress":"String","Request":"String","Session":"String"}