Returned when the anonymous ID is being used by another resource.

The client application should choose another anonymous ID or retrieve an automatically generated one.
interface AnonymousIdAlreadyInUseError {
    code: "AnonymousIdAlreadyInUse";
    message: string;
    [key: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

Properties

code: "AnonymousIdAlreadyInUse"

Error identifier.

message: string

"The given anonymous ID is already in use."