Type Alias Errors

The error response object describing the error from the handling of an HTTP request.

{
* errors: [
* {
* code: "GROUPS-7",
* status: 404,
* title: "Not found"
* }
* ],
* traceId: "00000000000000000137b213cf12a77b"
* }
type Errors = {
    errors?: Error[];
    traceId?: string;
}
Index

Properties

Properties

errors?: Error[]

An array of errors related to the operation.

traceId?: string

A unique identifier for tracing the error.