MeetingBooster API
Requests
Objects
Enums

JSApiError

This the the error response object when a request fails. The request will return a HTTP error status code. Usualy 500 - internal server error.
Property name Value Description
ExceptionMessage String The Exception message
ExceptionType String The exceptions type
Message String The error message
StackTrace String An optional stacktrace if available.
JSON example:
{
	"Message": "An error has occurred.",
	"ExceptionMessage": "Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).",
	"ExceptionType": "System.FormatException",
	"StackTrace": ""
}