Interface GraphQLAssociateMissingPermissionError

Returned when an Associate is missing a Permission on a B2B resource.

interface GraphQLAssociateMissingPermissionError {
    associate: CustomerResourceIdentifier;
    associateOnBehalf?: CustomerResourceIdentifier;
    businessUnit: BusinessUnitResourceIdentifier;
    code: "AssociateMissingPermission";
    permissions: string[];
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

ResourceIdentifier to the Associate that tried to perform the action.

associateOnBehalf?: CustomerResourceIdentifier

ResourceIdentifier of the Associate on whose behalf the action is performed.

code: "AssociateMissingPermission"
permissions: string[]

The Permissions that the Associate performing the action lacks. At least one of these Permissions is needed.

Generated using TypeDoc