nylas
    Preparing search index...

    Interface ManualAssignWorkspaceRequest

    Interface representing a request to manually assign or remove grants for a workspace.

    At least one of assignGrants or removeGrants must contain a grant ID. Each list may contain at most 500 entries.

    interface ManualAssignWorkspaceRequest {
        assignGrants?: string[];
        removeGrants?: string[];
    }
    Index

    Properties

    assignGrants?: string[]

    Grant IDs to assign to the workspace. Maximum 500 entries.

    removeGrants?: string[]

    Grant IDs to remove from the workspace. Maximum 500 entries.