MeetingBooster API
Requests
Objects
Enums

JSOAuthError

This is the response you get from a oauth request when ther is an error.
Property name Value Description
error String unauthorized_client,invalid_grant
error_description String A human-readable text providing additional information, used to assist in the understanding and resolution of the error occurred.
error_state JSOAuthErrorState Error state MeetingBooster
retry_in_seconds Integer How long you should wait in seconds before you can retry the request
JSON example:
{
 "error":"unauthorized_client",
 "error_description":"Authorization has been denied for this request",
 "retry_in_seconds" : 10,
 "error_state" : "FAILEDLOGIN"
 }