Error status codes and responses

401 Unauthorized#

This error indicates that you have provided an invalid API key.

{ "errors": ["Invalid API Key"] }

403 Forbidden#

This error indicates that you have accessed a resource that you do not have permission.

{ "errors": ["You do not have permission to access this resource"] }

422 Unprocessable Entity#

This error indicates that you have provided missing or invalid fields.

{ "errors": [ "Validation failed: Recipients can't be blank, Recipients list required" ] }
{
"errors": [
"param is missing or the value is empty: schedule"
]
}

404 Not Found#

This error indicates that the resource you are retrieving is not found.

{ "errors": [ "Resource not found" ] }