Typescript SDK Type Docs
    Preparing search index...

    Interface MaxResourceLimitExceededError

    Returned when a resource type cannot be created as it has reached its limits.

    The limits must be adjusted for this resource before sending the request again.
    
    interface MaxResourceLimitExceededError {
        code: "MaxResourceLimitExceeded";
        limit: number;
        message: string;
        resourceTypeId: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    code: "MaxResourceLimitExceeded"

    Error identifier.

    limit: number

    The limit that was exceeded.

    message: string

    "You have exceeded the limit of $limit resources of type $resourceTypeId."

    resourceTypeId: string

    The resource type that reached its limit.