Returned when a server-side problem occurs before or after data persistence. In some cases, the requested action may successfully complete after the error is returned. Therefore, it is recommended to verify the status of the requested resource after receiving a 500 error.

If you encounter this error, report it using the [Support Portal](https://support.commercetools.com).
interface GeneralError {
    code: "General";
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

code: "General"
message: string

Description about any known details of the problem, for example, "Write operations are temporarily unavailable".