> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stackone.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Zoho Sprints

> 76 actions available for Zoho Sprints through StackOne. Use via Actions RPC, Toolset SDK, MCP, or A2A.

export const GettingStarted = ({connector}) => {
  const linkStyle = {
    textDecoration: 'none'
  };
  const authConfigGuides = connector?.authentication?.filter(a => a?.setupGuide) ?? [];
  const linkAccountGuides = connector?.authentication?.filter(a => a?.configGuide) ?? [];
  return <div style={{
    marginTop: '32px',
    paddingTop: '24px'
  }} className="getting-started-section">
      <div style={{
    fontSize: '20px',
    fontWeight: '600',
    marginBottom: '12px'
  }}>Getting Started</div>
      <Steps>
        <Step title="Create or Select a Project">
          Set up a new project or select an existing one. See the <a href="/guides/managing-projects" style={linkStyle}>Projects Guide</a>.
        </Step>
        <Step title="Configure the Connector">
          <>
            Enable the connector and set up auth configuration in your project. See <a href="/guides/explore-connectors" style={linkStyle}>Managing Connectors</a>.
            {authConfigGuides.length > 0 && <>
              <Columns cols={2}>
                {authConfigGuides.map(auth => <Card title="Auth Config" href={`/${auth.setupGuide}`} icon={connector.icon} horizontal>
                    {connector.name} - {auth.label}
                  </Card>)}
              </Columns> 
              </>}
          </>
        </Step>
        <Step title="Link an Account">
          <>
            Connect an account using <a href="/guides/embedding-stackone-hub" style={linkStyle}>StackOne Hub</a> or <a href="/guides/auth-link" style={linkStyle}>Auth Link</a>.
            {linkAccountGuides.length > 0 && <>
                <Columns cols={2}>
                  {linkAccountGuides.map(auth => <Card title="Link Account" href={`/${auth.configGuide}`} icon={connector.icon} horizontal>
                      {connector.name} - {auth.label}
                    </Card>)}
                </Columns>
              </>}
          </>
        </Step>
        <Step title="Use Actions">
          <>
            Invoke actions using one of the methods below:
            <ul style={{
    marginTop: '8px',
    paddingLeft: '20px'
  }}>
              <li style={{
    marginBottom: '4px'
  }}><a href="/mcp/quickstart" style={linkStyle}>MCP</a> – Model Context Protocol for AI assistants</li>
              <li style={{
    marginBottom: '4px'
  }}><a href="/a2a/quickstart" style={linkStyle}>A2A</a> – Agent-to-Agent protocol</li>
              <li style={{
    marginBottom: '4px'
  }}><a href="/agents/typescript/introduction" style={linkStyle}>AI Toolset (TypeScript)</a> – TypeScript SDK for AI agents</li>
              <li style={{
    marginBottom: '4px'
  }}><a href="/agents/python/introduction" style={linkStyle}>AI Toolset (Python)</a> – Python SDK for AI agents</li>
              <li style={{
    marginBottom: '4px'
  }}><a href="/platform/api-reference/actions/make-an-rpc-call-to-an-action" style={linkStyle}>Actions RPC</a> – Direct API calls</li>
              <li style={{
    marginBottom: '4px'
  }}><a href="/guides/playground" style={linkStyle}>Playground</a> – Test actions in the dashboard</li>
            </ul>
          </>
        </Step>
      </Steps>
    </div>;
};

export const ActionsLibrary = ({search, setSearch, filtered, sharedStyles = {}, KeyCell, ScopesCell, availableScopes, selectedScopes, setSelectedScopes}) => {
  const libraryStyles = {
    section: {
      marginTop: '24px',
      marginBottom: '16px'
    },
    sectionTitle: {
      fontSize: '18px',
      fontWeight: '600',
      marginBottom: '12px'
    },
    filterRow: {
      display: 'flex',
      gap: '12px',
      marginBottom: '12px',
      alignItems: 'stretch'
    },
    count: {
      fontSize: '12px',
      marginBottom: '8px'
    },
    tableContainer: {
      maxHeight: '500px',
      overflowY: 'auto',
      overflowX: 'auto',
      borderRadius: '8px',
      fontSize: '13px'
    },
    gridTable: {
      display: 'grid',
      minWidth: '600px',
      gridTemplateColumns: '200px 1fr'
    },
    gridTableWithScopes: {
      gridTemplateColumns: '200px 1fr 150px'
    },
    gridHeader: {
      display: 'contents'
    },
    gridHeaderCell: {
      position: 'sticky',
      top: 0,
      padding: '10px 12px',
      fontWeight: '600',
      zIndex: 1
    },
    gridRow: {
      display: 'contents'
    },
    gridCellAction: {
      padding: '10px 12px',
      fontWeight: '500'
    },
    gridCellKey: {
      padding: '10px 12px'
    },
    gridCellScopes: {
      padding: '10px 12px',
      fontSize: '12px'
    },
    gridCellDescription: {
      padding: '10px 12px'
    }
  };
  const styles = {
    ...libraryStyles,
    ...sharedStyles
  };
  const safeAvailableScopes = Array.isArray(availableScopes) ? availableScopes : [];
  const safeSelectedScopes = Array.isArray(selectedScopes) ? selectedScopes : [];
  const hasScopesColumn = safeAvailableScopes.length > 0;
  const hasScopeFilter = safeAvailableScopes.length > 0 && typeof setSelectedScopes === 'function';
  const ScopesCellComponent = ScopesCell || (() => null);
  return <div style={styles.section}>
      <div style={styles.sectionTitle}>Actions</div>
      <div style={styles.filterRow}>
        <SearchBar value={search} onChange={setSearch} placeholder="Search actions" />
        {hasScopeFilter && <FilterDropdown label="Scopes" items={safeAvailableScopes} selectedItems={safeSelectedScopes} onChange={setSelectedScopes} searchPlaceholder="Search scopes..." emptyLabel="No scopes found" />}
      </div>
      <div style={styles.count} className="actions-library-count">
        {filtered.length === 0 ? '0 actions found' : `${filtered.length} action${filtered.length !== 1 ? 's' : ''}`}
      </div>
      {}
      <div className="not-prose actions-library-table-container" style={styles.tableContainer}>
        <div style={{
    ...hasScopesColumn ? {
      ...styles.gridTable,
      ...styles.gridTableWithScopes
    } : styles.gridTable
  }}>
          {}
          <div style={styles.gridHeader}>
            <div style={styles.gridHeaderCell} className="actions-library-grid-header-cell">Action</div>
            <div style={styles.gridHeaderCell} className="actions-library-grid-header-cell">Description</div>
            {hasScopesColumn && <div style={styles.gridHeaderCell} className="actions-library-grid-header-cell">Required scopes</div>}
          </div>
          {}
          {filtered.map(a => <div key={a.id} style={styles.gridRow}>
              <div style={styles.gridCellAction} className="actions-library-grid-cell">
                <div>{a.label}</div>
                <div style={{
    marginTop: '4px'
  }}>
                  <KeyCell id={a.id} />
                </div>
              </div>
              <div style={styles.gridCellDescription} className="actions-library-grid-cell actions-library-grid-cell--description">{a.description}</div>
              {hasScopesColumn && <div style={styles.gridCellScopes} className="actions-library-grid-cell actions-library-grid-cell--scopes">
                  <ScopesCellComponent scopes={a.requiredScopes} actionId={a.id} />
                </div>}
            </div>)}
        </div>
      </div>
    </div>;
};

export const FilterDropdown = ({label, items, selectedItems, onChange, searchPlaceholder = 'Search...', emptyLabel = 'No items found', formatLabel}) => {
  const [dropdownOpen, setDropdownOpen] = React.useState(false);
  const [search, setSearch] = React.useState('');
  const [hoveredItem, setHoveredItem] = React.useState(null);
  const dropdownRef = React.useRef(null);
  const styles = {
    dropdownContainer: {
      position: 'relative'
    },
    dropdownTrigger: {
      display: 'flex',
      alignItems: 'center',
      gap: '8px',
      padding: '10px 14px',
      borderRadius: '8px',
      fontSize: '14px',
      cursor: 'pointer',
      whiteSpace: 'nowrap',
      minWidth: '160px',
      justifyContent: 'space-between'
    },
    dropdownMenu: {
      position: 'absolute',
      top: '100%',
      right: 0,
      marginTop: '4px',
      borderRadius: '8px',
      zIndex: 50,
      minWidth: '220px',
      maxHeight: '320px',
      display: 'flex',
      flexDirection: 'column'
    },
    dropdownHeader: {
      padding: '8px 12px'
    },
    selectActions: {
      display: 'flex',
      alignItems: 'center',
      gap: '8px',
      marginTop: '6px',
      fontSize: '12px'
    },
    selectActionBtn: {
      background: 'none',
      border: 'none',
      cursor: 'pointer',
      padding: '2px 4px',
      fontSize: '12px'
    },
    dropdownSearchInput: {
      width: '100%',
      padding: '8px 10px',
      borderRadius: '6px',
      fontSize: '13px',
      outline: 'none'
    },
    dropdownList: {
      overflowY: 'auto',
      maxHeight: '220px',
      padding: '4px 0'
    },
    dropdownItem: {
      display: 'flex',
      alignItems: 'center',
      gap: '10px',
      padding: '8px 12px',
      cursor: 'pointer',
      fontSize: '13px',
      transition: 'background-color 0.1s'
    },
    checkbox: {
      width: '16px',
      height: '16px',
      borderRadius: '4px',
      display: 'flex',
      alignItems: 'center',
      justifyContent: 'center',
      flexShrink: 0
    },
    checkmark: {
      color: 'white',
      fontSize: '10px',
      fontWeight: 'bold'
    },
    dropdownFooter: {
      padding: '8px 12px',
      display: 'flex',
      justifyContent: 'space-between',
      alignItems: 'center'
    },
    clearButton: {
      fontSize: '12px',
      cursor: 'pointer',
      padding: '4px 8px',
      borderRadius: '4px',
      border: 'none',
      background: 'none'
    },
    badge: {
      fontSize: '11px',
      fontWeight: '600',
      padding: '2px 6px',
      borderRadius: '10px',
      marginLeft: '4px'
    },
    chevron: {
      fontSize: '10px',
      transition: 'transform 0.15s'
    },
    noResults: {
      padding: '12px',
      textAlign: 'center',
      fontSize: '13px'
    }
  };
  const safeSelected = Array.isArray(selectedItems) ? selectedItems : [];
  const formatItemLabel = item => {
    if (typeof formatLabel === 'function') {
      return formatLabel(item);
    }
    return item;
  };
  const filteredItems = React.useMemo(() => {
    if (!search) return items;
    const searchLower = search.toLowerCase();
    return items.filter(item => {
      const labelText = formatItemLabel(item);
      return labelText.toLowerCase().includes(searchLower);
    });
  }, [items, search, formatLabel]);
  const isSelected = item => safeSelected.includes(item);
  const toggleItem = item => {
    const next = isSelected(item) ? safeSelected.filter(v => v !== item) : [...safeSelected, item];
    onChange(next);
  };
  const clearFilters = () => {
    onChange([]);
  };
  const selectAll = () => {
    onChange(items);
  };
  React.useEffect(() => {
    const handleClickOutside = e => {
      if (dropdownRef.current && !dropdownRef.current.contains(e.target)) {
        setDropdownOpen(false);
        setSearch('');
        setHoveredItem(null);
      }
    };
    document.addEventListener('mousedown', handleClickOutside);
    return () => document.removeEventListener('mousedown', handleClickOutside);
  }, []);
  return <div style={styles.dropdownContainer} ref={dropdownRef}>
      <button type="button" onClick={() => setDropdownOpen(!dropdownOpen)} style={styles.dropdownTrigger} className={`filter-dropdown__trigger${safeSelected.length > 0 ? ' filter-dropdown__trigger--active' : ''}`}>
        <span>
          {label}
          {safeSelected.length > 0 && <span style={styles.badge} className="filter-dropdown__badge">{safeSelected.length}</span>}
        </span>
        <span style={{
    ...styles.chevron,
    transform: dropdownOpen ? 'rotate(180deg)' : 'rotate(0deg)'
  }} className="filter-dropdown__chevron">
          ▼
        </span>
      </button>
      {dropdownOpen && <div style={styles.dropdownMenu} className="filter-dropdown__menu">
          <div style={styles.dropdownHeader} className="filter-dropdown__header">
            <input type="text" placeholder={searchPlaceholder} value={search} onChange={e => setSearch(e.target.value)} style={styles.dropdownSearchInput} className="filter-dropdown__search" autoFocus />
            <div style={styles.selectActions}>
              <button type="button" onClick={selectAll} style={styles.selectActionBtn} className="filter-dropdown__action-btn">
                Select all
              </button>
              <span className="filter-dropdown__separator">|</span>
              <button type="button" onClick={clearFilters} style={styles.selectActionBtn} className="filter-dropdown__action-btn">
                Clear
              </button>
            </div>
          </div>
          <div style={styles.dropdownList}>
            {filteredItems.length === 0 ? <div style={styles.noResults} className="filter-dropdown__no-results">{emptyLabel}</div> : filteredItems.map(item => {
    const itemClass = ['filter-dropdown__item', hoveredItem === item ? 'filter-dropdown__item--hovered' : '', isSelected(item) ? 'filter-dropdown__item--selected' : ''].filter(Boolean).join(' ');
    const checkboxClass = `filter-dropdown__checkbox${isSelected(item) ? ' filter-dropdown__checkbox--checked' : ''}`;
    return <div key={item} onClick={() => toggleItem(item)} onMouseEnter={() => setHoveredItem(item)} onMouseLeave={() => setHoveredItem(null)} style={styles.dropdownItem} className={itemClass}>
                    <div style={styles.checkbox} className={checkboxClass}>
                      {isSelected(item) && <span style={styles.checkmark}>✓</span>}
                    </div>
                    <span>{formatItemLabel(item)}</span>
                  </div>;
  })}
          </div>
        </div>}
    </div>;
};

export const SearchBar = ({value, onChange, placeholder = 'Search...'}) => {
  const baseStyle = {
    padding: '10px 14px',
    borderRadius: '8px',
    fontSize: '14px',
    outline: 'none',
    flex: 1,
    minWidth: 0
  };
  return <input type="text" placeholder={placeholder} value={value} onChange={e => onChange(e.target.value)} style={baseStyle} className="search-bar" />;
};

export const ConnectorPage = ({connector}) => {
  const styles = {
    header: {
      display: 'flex',
      alignItems: 'center',
      gap: '12px',
      marginBottom: '24px'
    },
    tagsRow: {
      display: 'flex',
      flexWrap: 'wrap',
      gap: '6px',
      marginTop: '8px'
    },
    releaseTag: {
      display: 'inline-block',
      padding: '2px 8px',
      borderRadius: '4px',
      fontSize: '11px',
      fontWeight: '500'
    },
    categoryTag: {
      display: 'inline-block',
      padding: '2px 8px',
      borderRadius: '4px',
      fontSize: '11px',
      fontWeight: '500'
    },
    icon: {
      width: '48px',
      height: '48px',
      borderRadius: '10px',
      padding: '2px'
    },
    title: {
      fontSize: '24px',
      fontWeight: '600'
    },
    subtitle: {
      fontSize: '14px'
    },
    authDescription: {
      fontSize: '14px',
      marginTop: 0
    },
    sectionTitle: {
      fontSize: '18px',
      fontWeight: '600',
      marginBottom: '12px'
    },
    codeWrapper: {
      position: 'relative',
      display: 'inline-flex',
      alignItems: 'center',
      maxWidth: '100%',
      cursor: 'pointer',
      overflowX: 'auto',
      overflowY: 'hidden',
      msOverflowStyle: 'none',
      scrollbarWidth: 'none'
    },
    code: {
      padding: '4px 8px',
      borderRadius: '4px',
      fontSize: '11px',
      display: 'inline-block',
      whiteSpace: 'nowrap',
      transition: 'background-color 0.15s'
    },
    tooltip: {
      position: 'absolute',
      top: '100%',
      left: '50%',
      transform: 'translateX(-50%)',
      padding: '6px 10px',
      borderRadius: '6px',
      fontSize: '11px',
      whiteSpace: 'nowrap',
      marginTop: '6px',
      zIndex: 50,
      maxWidth: '300px',
      wordBreak: 'break-all'
    },
    tooltipArrow: {
      position: 'absolute',
      bottom: '100%',
      left: '50%',
      transform: 'translateX(-50%)',
      borderWidth: '5px',
      borderStyle: 'solid',
      zIndex: 50
    }
  };
  const [search, setSearch] = React.useState('');
  const [copiedId, setCopiedId] = React.useState(null);
  const [selectedScopes, setSelectedScopes] = React.useState([]);
  const availableScopes = React.useMemo(() => {
    const set = new Set();
    connector.actions.forEach(a => {
      if (Array.isArray(a.requiredScopes)) {
        a.requiredScopes.forEach(s => {
          if (s) set.add(s);
        });
      }
    });
    return Array.from(set).sort();
  }, [connector.actions]);
  const filtered = React.useMemo(() => {
    const searchLower = search.toLowerCase();
    return connector.actions.filter(a => {
      const matchesSearch = a.label.toLowerCase().includes(searchLower) || a.description.toLowerCase().includes(searchLower) || a.id.toLowerCase().includes(searchLower);
      if (!matchesSearch) return false;
      if (selectedScopes.length === 0) return true;
      const scopes = Array.isArray(a.requiredScopes) ? a.requiredScopes : [];
      if (scopes.length === 0) return false;
      return selectedScopes.some(scope => scopes.includes(scope));
    });
  }, [connector.actions, search, selectedScopes]);
  const handleImageError = e => {
    e.target.style.display = 'none';
  };
  const formatCategoryLabel = cat => {
    const acronyms = ['ai', 'ats', 'crm', 'hris', 'iam', 'lms'];
    if (acronyms.includes(cat.toLowerCase())) {
      return cat.toUpperCase();
    }
    return cat.replace(/_/g, ' ').replace(/\b\w/g, c => c.toUpperCase());
  };
  const ReleaseTag = () => {
    if (!connector.releaseStage || connector.releaseStage === 'ga') return null;
    const variantClass = connector.releaseStage === 'beta' ? 'connector-page-tag-beta' : 'connector-page-tag-preview';
    return <span style={styles.releaseTag} className={variantClass}>
        {connector.releaseStage.charAt(0).toUpperCase() + connector.releaseStage.slice(1)}
      </span>;
  };
  const CategoryTags = () => {
    if (!connector.categories || connector.categories.length === 0) return null;
    return <>
        {connector.categories.map(cat => <span key={cat} style={styles.categoryTag} className="connector-page-category-tag">
            {formatCategoryLabel(cat)}
          </span>)}
      </>;
  };
  const copyToClipboard = async (text, id) => {
    try {
      await navigator.clipboard.writeText(text);
      setCopiedId(id);
      setTimeout(() => setCopiedId(null), 1500);
    } catch (err) {
      console.error('Failed to copy:', err);
    }
  };
  const CopyChip = ({text, copyId}) => {
    const [isHovered, setIsHovered] = React.useState(false);
    const isCopied = copiedId === copyId;
    if (!text) {
      return null;
    }
    const codeClassName = `connector-page-code${isCopied ? ' connector-page-code--copied' : ''}`;
    return <div style={styles.codeWrapper} onMouseEnter={() => setIsHovered(true)} onMouseLeave={() => setIsHovered(false)} onClick={() => copyToClipboard(text, copyId)} title="">
        {(isHovered || isCopied) && <div style={styles.tooltip} className="connector-page-tooltip">
            {isCopied ? '✓ Copied!' : 'Click to copy'}
            <div style={styles.tooltipArrow} className="connector-page-tooltip-arrow" />
          </div>}
        <code style={styles.code} className={codeClassName}>
          {text}
        </code>
      </div>;
  };
  const KeyCell = ({id}) => <CopyChip text={id} copyId={id} />;
  const ScopesCell = ({scopes, actionId}) => {
    const scopeList = Array.isArray(scopes) ? scopes.filter(Boolean) : [];
    if (scopeList.length === 0) return null;
    return <div style={{
      display: 'flex',
      flexWrap: 'wrap',
      gap: '6px'
    }}>
        {scopeList.map(scope => <CopyChip key={scope} text={scope} copyId={`scopes:${actionId}:${scope}`} />)}
      </div>;
  };
  return <div>
      {}
      <div style={styles.header}>
        <img src={connector.icon} alt={connector.name} style={styles.icon} className="connector-page-icon" onError={handleImageError} />
        <div>
          <div style={styles.title}>{connector.name}</div>
          <div style={styles.subtitle} className="connector-page-subtitle">
            {connector.actions.length} actions · {connector.authentication.length} auth method{connector.authentication.length !== 1 ? 's' : ''}
          </div>
          {connector.releaseStage && connector.releaseStage !== 'ga' || connector.categories && connector.categories.length > 0 ? <div style={styles.tagsRow}>
              <ReleaseTag />
              <CategoryTags />
            </div> : null}
        </div>
      </div>

      {}
      <div style={styles.sectionTitle}>Authentication</div>
      <Columns cols={2}>        
        {connector.authentication.length > 0 ? connector.authentication.map(auth => {
    const authLabel = auth?.label || '';
    const authDescription = auth?.description;
    const configGuide = auth?.configGuide;
    const setupGuide = auth?.setupGuide;
    const hasConfigGuide = !!configGuide;
    const hasSetupGuide = !!setupGuide;
    const hasAnyGuide = hasConfigGuide || hasSetupGuide;
    return <Card key={authLabel} title={authLabel}>
                {authDescription && <p style={{
      ...styles.authDescription,
      marginBottom: hasAnyGuide ? '8px' : 0
    }} className="connector-page-auth-description">
                    {authDescription}
                  </p>}
                {hasAnyGuide && <span style={{
      fontSize: '14px'
    }}>
                    Guides: {hasSetupGuide && <a href={`/${setupGuide}`} style={{
      textDecoration: 'none'
    }}>Auth Config</a>}
                    {hasConfigGuide && hasSetupGuide && ', '}
                    {hasConfigGuide && <a href={`/${configGuide}`} style={{
      textDecoration: 'none'
    }}>Link Account</a>}
                  </span>}
              </Card>;
  }) : <>
            Contact StackOne for authentication details.
          </>}
      </Columns>

      <ActionsLibrary search={search} setSearch={setSearch} filtered={filtered} sharedStyles={{
    sectionTitle: styles.sectionTitle
  }} KeyCell={KeyCell} ScopesCell={ScopesCell} availableScopes={availableScopes} selectedScopes={selectedScopes} setSelectedScopes={setSelectedScopes} />

      <GettingStarted connector={connector} />

      {connector.documentation?.references?.length > 0 && <>
          <div style={styles.sectionTitle}>References</div>
          <Columns cols={2}>
            {connector.documentation.references.map(ref => {
    let safeHref;
    try {
      const parsed = new URL(ref.url);
      safeHref = parsed.protocol === 'http:' || parsed.protocol === 'https:' ? ref.url : undefined;
    } catch {
      safeHref = undefined;
    }
    return <Card key={`${ref.title}-${ref.url}`} title={ref.title} href={safeHref}>
                  {ref.description}
                </Card>;
  })}
          </Columns>
        </>}

    </div>;
};

export const connector = {
  "key": "zohosprints",
  "name": "Zoho Sprints",
  "icon": "https://stackone-logos.com/api/zoho-desk/filled/png",
  "authentication": [{
    "label": "OAuth 2.0",
    "description": "Connect your Zoho Sprints account securely using OAuth 2.0. Access tokens expire after 1 hour and refresh automatically.",
    "configGuide": "connectors/zohosprints/guides/link-account/oauth-2-0",
    "setupGuide": "connectors/zohosprints/guides/auth-config/oauth-2-0"
  }],
  "actions": [{
    "id": "zohosprints_get_all_workspaces",
    "label": "Get All Workspaces",
    "description": "Retrieve all Zoho Sprints workspaces (teams) accessible to the authenticated user.",
    "requiredScopes": ["ZohoSprints.teams.READ"]
  }, {
    "id": "zohosprints_get_workspace_settings",
    "label": "Get Workspace Settings",
    "description": "Retrieve detailed information about a specific Zoho Sprints workspace (team) by its ID.",
    "requiredScopes": ["ZohoSprints.teams.READ"]
  }, {
    "id": "zohosprints_get_all_projects",
    "label": "Get All Projects",
    "description": "Retrieve all projects within a Zoho Sprints portal with pagination support.",
    "requiredScopes": ["ZohoSprints.projects.READ"]
  }, {
    "id": "zohosprints_get_project_details",
    "label": "Get Project Details",
    "description": "Retrieve detailed information about a specific project by its ID.",
    "requiredScopes": ["ZohoSprints.projects.READ"]
  }, {
    "id": "zohosprints_create_project",
    "label": "Create Project",
    "description": "Create a new agile project in a Zoho Sprints portal with configurable settings.",
    "requiredScopes": ["ZohoSprints.projects.CREATE"]
  }, {
    "id": "zohosprints_update_project",
    "label": "Update Project",
    "description": "Update an existing project's name, description, status, or configuration settings.",
    "requiredScopes": ["ZohoSprints.projects.UPDATE"]
  }, {
    "id": "zohosprints_delete_project",
    "label": "Delete Project",
    "description": "Permanently delete a project and all its associated sprints, items, and data.",
    "requiredScopes": ["ZohoSprints.projects.DELETE"]
  }, {
    "id": "zohosprints_get_project_users",
    "label": "Get Project Users",
    "description": "Retrieve all members assigned to a specific project with their roles and permissions.",
    "requiredScopes": ["ZohoSprints.projectusers.READ"]
  }, {
    "id": "zohosprints_add_project_users",
    "label": "Add Project Users",
    "description": "Add new or existing portal members to a project.",
    "requiredScopes": ["ZohoSprints.projectusers.CREATE"]
  }, {
    "id": "zohosprints_delete_project_user",
    "label": "Delete Project User",
    "description": "Remove a member from a project, revoking their access to project resources.",
    "requiredScopes": ["ZohoSprints.projectusers.DELETE"]
  }, {
    "id": "zohosprints_get_project_groups",
    "label": "Get Project Groups",
    "description": "Retrieve all project groups in a workspace, required to supply the projgroup field when creating projects.",
    "requiredScopes": ["ZohoSprints.teams.READ"]
  }, {
    "id": "zohosprints_get_all_sprints",
    "label": "Get All Sprints",
    "description": "Retrieve all sprints within a project, including active, upcoming, and completed sprints.",
    "requiredScopes": ["ZohoSprints.sprints.READ"]
  }, {
    "id": "zohosprints_get_sprint_details",
    "label": "Get Sprint Details",
    "description": "Retrieve detailed information about a specific sprint including its goal, dates, and completion status.",
    "requiredScopes": ["ZohoSprints.sprints.READ"]
  }, {
    "id": "zohosprints_create_sprint",
    "label": "Create Sprint",
    "description": "Create a new sprint in a project with a defined name, description, and date range.",
    "requiredScopes": ["ZohoSprints.sprints.CREATE"]
  }, {
    "id": "zohosprints_update_sprint",
    "label": "Update Sprint",
    "description": "Update a sprint's name, description, dates, or other properties.",
    "requiredScopes": ["ZohoSprints.sprints.UPDATE"]
  }, {
    "id": "zohosprints_delete_sprint",
    "label": "Delete Sprint",
    "description": "Delete a specific sprint permanently.",
    "requiredScopes": ["ZohoSprints.sprints.DELETE"]
  }, {
    "id": "zohosprints_complete_sprint",
    "label": "Complete Sprint",
    "description": "Mark an active sprint as completed.",
    "requiredScopes": ["ZohoSprints.sprints.UPDATE"]
  }, {
    "id": "zohosprints_get_active_sprint",
    "label": "Get Active Sprint",
    "description": "Retrieve the currently active sprint for a project.",
    "requiredScopes": ["ZohoSprints.sprints.READ"]
  }, {
    "id": "zohosprints_start_sprint",
    "label": "Start Sprint",
    "description": "Start a sprint that is in \"not started\" status to begin the sprint cycle.",
    "requiredScopes": ["ZohoSprints.sprints.UPDATE"]
  }, {
    "id": "zohosprints_get_items",
    "label": "Get Items",
    "description": "Retrieve all work items within a specific sprint or backlog.",
    "requiredScopes": ["ZohoSprints.items.READ"]
  }, {
    "id": "zohosprints_get_item_details",
    "label": "Get Item Details",
    "description": "Retrieve complete details of a specific work item by ID, including all metadata and custom fields.",
    "requiredScopes": ["ZohoSprints.items.READ"]
  }, {
    "id": "zohosprints_create_item",
    "label": "Create Item",
    "description": "Create a new work item in a sprint or backlog with full configuration options.",
    "requiredScopes": ["ZohoSprints.items.CREATE"]
  }, {
    "id": "zohosprints_update_item",
    "label": "Update Item",
    "description": "Update a work item's properties including name, status, priority, assignees, and dates.",
    "requiredScopes": ["ZohoSprints.items.UPDATE"]
  }, {
    "id": "zohosprints_delete_item",
    "label": "Delete Item",
    "description": "Permanently delete a work item and all its associated comments, attachments, and time logs.",
    "requiredScopes": ["ZohoSprints.items.DELETE"]
  }, {
    "id": "zohosprints_move_items",
    "label": "Move Items",
    "description": "Move one or more work items to a different sprint, or to a sprint in a different project.",
    "requiredScopes": ["ZohoSprints.items.UPDATE"]
  }, {
    "id": "zohosprints_get_item_activity",
    "label": "Get Item Activity",
    "description": "Retrieve the activity history and change log for a specific work item.",
    "requiredScopes": ["ZohoSprints.items.READ"]
  }, {
    "id": "zohosprints_get_item_attachments",
    "label": "Get Item Attachments",
    "description": "Retrieve all file attachments associated with a specific work item.",
    "requiredScopes": ["ZohoSprints.items.READ"]
  }, {
    "id": "zohosprints_delete_item_attachment",
    "label": "Delete Item Attachment",
    "description": "Remove a specific file attachment from a work item.",
    "requiredScopes": ["ZohoSprints.items.DELETE"]
  }, {
    "id": "zohosprints_get_subitems",
    "label": "Get Subitems",
    "description": "Retrieve all sub-items (child tasks) belonging to a specific parent work item.",
    "requiredScopes": ["ZohoSprints.items.READ"]
  }, {
    "id": "zohosprints_create_subitem",
    "label": "Create Subitem",
    "description": "Create a child sub-item under a parent work item to break down work into smaller tasks.",
    "requiredScopes": ["ZohoSprints.items.CREATE"]
  }, {
    "id": "zohosprints_update_subitem",
    "label": "Update Subitem",
    "description": "Update a sub-item's name, status, assignees, priority, or dates.",
    "requiredScopes": ["ZohoSprints.items.UPDATE"]
  }, {
    "id": "zohosprints_delete_subitem",
    "label": "Delete Subitem",
    "description": "Permanently delete a sub-item from a work item.",
    "requiredScopes": ["ZohoSprints.items.DELETE"]
  }, {
    "id": "zohosprints_get_item_types",
    "label": "Get Item Types",
    "description": "Retrieve all item types configured for a project, including type IDs and names.",
    "requiredScopes": ["ZohoSprints.items.READ"]
  }, {
    "id": "zohosprints_get_project_priorities",
    "label": "Get Project Priorities",
    "description": "Retrieve all work item priority levels configured for a specific project.",
    "requiredScopes": ["ZohoSprints.projects.READ"]
  }, {
    "id": "zohosprints_get_project_backlog_id",
    "label": "Get Project Backlog ID",
    "description": "Retrieve the backlog ID for a project, required for all backlog item operations.",
    "requiredScopes": ["ZohoSprints.projects.READ"]
  }, {
    "id": "zohosprints_get_project_backlog",
    "label": "Get Project Backlog",
    "description": "Retrieve all work items in the project backlog that are not yet assigned to a sprint.",
    "requiredScopes": ["ZohoSprints.items.READ"]
  }, {
    "id": "zohosprints_get_backlog_item_details",
    "label": "Get Backlog Item Details",
    "description": "Retrieve complete details of a specific backlog item by its ID.",
    "requiredScopes": ["ZohoSprints.items.READ"]
  }, {
    "id": "zohosprints_create_backlog_item",
    "label": "Create Backlog Item",
    "description": "Create a new work item directly in the project backlog for future sprint planning.",
    "requiredScopes": ["ZohoSprints.items.CREATE"]
  }, {
    "id": "zohosprints_update_backlog_item",
    "label": "Update Backlog Item",
    "description": "Update properties of a backlog item including name, priority, description, or assignee.",
    "requiredScopes": ["ZohoSprints.items.UPDATE"]
  }, {
    "id": "zohosprints_delete_backlog_item",
    "label": "Delete Backlog Item",
    "description": "Permanently delete a backlog item and all its associated data.",
    "requiredScopes": ["ZohoSprints.items.DELETE"]
  }, {
    "id": "zohosprints_move_backlog_items_to_sprint",
    "label": "Move Backlog Items To Sprint",
    "description": "Move one or more backlog items into a specific sprint during sprint planning.",
    "requiredScopes": ["ZohoSprints.items.UPDATE"]
  }, {
    "id": "zohosprints_move_items_to_backlog",
    "label": "Move Items To Backlog",
    "description": "Move one or more sprint work items back to the project backlog.",
    "requiredScopes": ["ZohoSprints.items.UPDATE"]
  }, {
    "id": "zohosprints_get_epics",
    "label": "Get Epics",
    "description": "Retrieve all epics in a project with their status, item counts, and completion progress.",
    "requiredScopes": ["ZohoSprints.epic.READ"]
  }, {
    "id": "zohosprints_get_epic_details",
    "label": "Get Epic Details",
    "description": "Retrieve detailed information about a specific epic including its linked items and progress.",
    "requiredScopes": ["ZohoSprints.epic.READ"]
  }, {
    "id": "zohosprints_create_epic",
    "label": "Create Epic",
    "description": "Create a new epic to group related work items across multiple sprints under a strategic initiative.",
    "requiredScopes": ["ZohoSprints.epic.CREATE"]
  }, {
    "id": "zohosprints_update_epic",
    "label": "Update Epic",
    "description": "Update an epic's name, description, owner, color, or archive status.",
    "requiredScopes": ["ZohoSprints.epic.UPDATE"]
  }, {
    "id": "zohosprints_delete_epic",
    "label": "Delete Epic",
    "description": "Delete an epic, unlinking all associated work items which remain in their sprints.",
    "requiredScopes": ["ZohoSprints.epic.DELETE"]
  }, {
    "id": "zohosprints_get_epic_items",
    "label": "Get Epic Items",
    "description": "Retrieve all work items associated with a specific epic in a sprint or backlog.",
    "requiredScopes": ["ZohoSprints.items.READ"]
  }, {
    "id": "zohosprints_add_items_to_epic",
    "label": "Add Items To Epic",
    "description": "Associate one or more work items with a specific epic in a project.",
    "requiredScopes": ["ZohoSprints.epic.UPDATE"]
  }, {
    "id": "zohosprints_get_release_stages",
    "label": "Get Release Stages",
    "description": "Retrieve all release stages configured for a project.",
    "requiredScopes": ["ZohoSprints.release.READ"]
  }, {
    "id": "zohosprints_get_releases",
    "label": "Get Releases",
    "description": "Retrieve all releases in a project with their status, target dates, and item completion progress.",
    "requiredScopes": ["ZohoSprints.release.READ"]
  }, {
    "id": "zohosprints_get_release_details",
    "label": "Get Release Details",
    "description": "Retrieve detailed information about a specific release including linked items and deployment status.",
    "requiredScopes": ["ZohoSprints.release.READ"]
  }, {
    "id": "zohosprints_create_release",
    "label": "Create Release",
    "description": "Create a new release to track a set of features or fixes for delivery to end users.",
    "requiredScopes": ["ZohoSprints.release.CREATE"]
  }, {
    "id": "zohosprints_update_release",
    "label": "Update Release",
    "description": "Update a release's name, goal, dates, owners, status, or color.",
    "requiredScopes": ["ZohoSprints.release.UPDATE"]
  }, {
    "id": "zohosprints_delete_release",
    "label": "Delete Release",
    "description": "Delete a release, unlinking all associated work items which remain in their sprints.",
    "requiredScopes": ["ZohoSprints.release.DELETE"]
  }, {
    "id": "zohosprints_add_items_to_release",
    "label": "Add Items To Release",
    "description": "Associate one or more work items with a specific release.",
    "requiredScopes": ["ZohoSprints.release.UPDATE"]
  }, {
    "id": "zohosprints_get_item_comments",
    "label": "Get Item Comments",
    "description": "Retrieve all comments on a specific work item in chronological order.",
    "requiredScopes": ["ZohoSprints.comments.READ"]
  }, {
    "id": "zohosprints_add_item_comment",
    "label": "Add Item Comment",
    "description": "Add a new comment to a work item to provide updates, ask questions, or document decisions.",
    "requiredScopes": ["ZohoSprints.comments.CREATE"]
  }, {
    "id": "zohosprints_update_item_comment",
    "label": "Update Item Comment",
    "description": "Edit the content of an existing comment on a work item.",
    "requiredScopes": ["ZohoSprints.comments.UPDATE"]
  }, {
    "id": "zohosprints_delete_item_comment",
    "label": "Delete Item Comment",
    "description": "Permanently remove a comment from a work item.",
    "requiredScopes": ["ZohoSprints.comments.DELETE"]
  }, {
    "id": "zohosprints_get_workspace_users",
    "label": "Get Workspace Users",
    "description": "Retrieve all users in a workspace with pagination. Applicable only for admins.",
    "requiredScopes": ["ZohoSprints.teamusers.READ"]
  }, {
    "id": "zohosprints_add_workspace_users",
    "label": "Add Workspace Users",
    "description": "Add one or more users to a workspace with assigned roles and profiles.",
    "requiredScopes": ["ZohoSprints.teamusers.CREATE"]
  }, {
    "id": "zohosprints_update_user_role",
    "label": "Update User Role",
    "description": "Update the workspace role assigned to a specific user.",
    "requiredScopes": ["ZohoSprints.teamusers.UPDATE"]
  }, {
    "id": "zohosprints_delete_workspace_user",
    "label": "Delete Workspace User",
    "description": "Remove a specific user from the workspace, revoking all their access.",
    "requiredScopes": ["ZohoSprints.teamusers.DELETE"]
  }, {
    "id": "zohosprints_get_project_status",
    "label": "Get Project Status",
    "description": "Retrieve all work item statuses configured for a specific project.",
    "requiredScopes": ["ZohoSprints.projects.READ"]
  }, {
    "id": "zohosprints_create_project_status",
    "label": "Create Project Status",
    "description": "Create a new work item status for a project workflow.",
    "requiredScopes": ["ZohoSprints.projectitemstatus.CREATE"]
  }, {
    "id": "zohosprints_update_project_status",
    "label": "Update Project Status",
    "description": "Rename an existing work item status in a project.",
    "requiredScopes": ["ZohoSprints.projectitemstatus.UPDATE"]
  }, {
    "id": "zohosprints_delete_project_status",
    "label": "Delete Project Status",
    "description": "Delete a custom work item status from a project's workflow.",
    "requiredScopes": ["ZohoSprints.projectitemstatus.DELETE"]
  }, {
    "id": "zohosprints_get_tags",
    "label": "Get Tags",
    "description": "Retrieve all custom tags in a workspace for categorizing and filtering work items.",
    "requiredScopes": ["ZohoSprints.teams.READ"]
  }, {
    "id": "zohosprints_add_custom_tag",
    "label": "Add Custom Tag",
    "description": "Create a new custom tag to categorize and group work items in a workspace.",
    "requiredScopes": ["ZohoSprints.teams.CREATE"]
  }, {
    "id": "zohosprints_update_custom_tag",
    "label": "Update Custom Tag",
    "description": "Update a custom tag's name and color in a workspace.",
    "requiredScopes": ["ZohoSprints.teams.UPDATE"]
  }, {
    "id": "zohosprints_delete_custom_tag",
    "label": "Delete Custom Tag",
    "description": "Delete a custom tag from a workspace, removing it from all associated work items.",
    "requiredScopes": ["ZohoSprints.teams.DELETE"]
  }, {
    "id": "zohosprints_get_log_hours",
    "label": "Get Log Hours",
    "description": "Retrieve the list of time logs for a project grouped by date or user.",
    "requiredScopes": ["ZohoSprints.timesheets.READ"]
  }, {
    "id": "zohosprints_add_log_hours",
    "label": "Add Log Hours",
    "description": "Log time spent working on a specific work item with date, duration, and billability.",
    "requiredScopes": ["ZohoSprints.timesheets.CREATE"]
  }, {
    "id": "zohosprints_update_log_hours",
    "label": "Update Log Hours",
    "description": "Update an existing time log entry to correct duration, date, notes, or approval status.",
    "requiredScopes": ["ZohoSprints.timesheets.UPDATE"]
  }, {
    "id": "zohosprints_delete_log_hours",
    "label": "Delete Log Hours",
    "description": "Delete a time log entry from a project.",
    "requiredScopes": ["ZohoSprints.timesheets.DELETE"]
  }],
  "releaseStage": "preview",
  "categories": [],
  "scopeDefinitions": [{
    "name": "ZohoSprints.teams.READ",
    "description": "Read-only access to workspace (team) information and tags"
  }, {
    "name": "ZohoSprints.teams.CREATE",
    "description": "Permission to create tags and workspace-level resources"
  }, {
    "name": "ZohoSprints.teams.UPDATE",
    "description": "Permission to update workspace-level resources and tags"
  }, {
    "name": "ZohoSprints.teams.DELETE",
    "description": "Permission to delete workspace-level resources and tags"
  }, {
    "name": "ZohoSprints.feed.READ",
    "description": "Read-only access to project activity feed and recent changes",
    "includes": ["ZohoSprints.projects.READ"]
  }, {
    "name": "ZohoSprints.projects.READ",
    "description": "Read-only access to projects, statuses, and custom fields",
    "includes": ["ZohoSprints.teams.READ"]
  }, {
    "name": "ZohoSprints.projects.CREATE",
    "description": "Permission to create projects, statuses, and custom fields",
    "includes": ["ZohoSprints.projects.READ"]
  }, {
    "name": "ZohoSprints.projects.UPDATE",
    "description": "Permission to update projects, statuses, and custom fields",
    "includes": ["ZohoSprints.projects.READ"]
  }, {
    "name": "ZohoSprints.projects.DELETE",
    "description": "Permission to delete projects, statuses, and custom fields",
    "includes": ["ZohoSprints.projects.READ"]
  }, {
    "name": "ZohoSprints.sprints.READ",
    "description": "Read-only access to sprints and sprint reports",
    "includes": ["ZohoSprints.projects.READ"]
  }, {
    "name": "ZohoSprints.sprints.CREATE",
    "description": "Permission to create sprints",
    "includes": ["ZohoSprints.sprints.READ"]
  }, {
    "name": "ZohoSprints.sprints.UPDATE",
    "description": "Permission to update and activate sprints",
    "includes": ["ZohoSprints.sprints.READ"]
  }, {
    "name": "ZohoSprints.sprints.DELETE",
    "description": "Permission to delete sprints",
    "includes": ["ZohoSprints.sprints.READ"]
  }, {
    "name": "ZohoSprints.items.READ",
    "description": "Read-only access to work items, comments, and attachments",
    "includes": ["ZohoSprints.sprints.READ"]
  }, {
    "name": "ZohoSprints.items.CREATE",
    "description": "Permission to create work items, sub-items, and comments",
    "includes": ["ZohoSprints.items.READ"]
  }, {
    "name": "ZohoSprints.items.UPDATE",
    "description": "Permission to update work items, sub-items, and move items between sprints",
    "includes": ["ZohoSprints.items.READ"]
  }, {
    "name": "ZohoSprints.items.DELETE",
    "description": "Permission to delete work items, sub-items, comments, and attachments",
    "includes": ["ZohoSprints.items.READ"]
  }, {
    "name": "ZohoSprints.epic.READ",
    "description": "Read-only access to epics and epic items",
    "includes": ["ZohoSprints.projects.READ"]
  }, {
    "name": "ZohoSprints.epic.CREATE",
    "description": "Permission to create epics",
    "includes": ["ZohoSprints.epic.READ"]
  }, {
    "name": "ZohoSprints.epic.UPDATE",
    "description": "Permission to update epics and link items to epics",
    "includes": ["ZohoSprints.epic.READ"]
  }, {
    "name": "ZohoSprints.epic.DELETE",
    "description": "Permission to delete epics",
    "includes": ["ZohoSprints.epic.READ"]
  }, {
    "name": "ZohoSprints.release.READ",
    "description": "Read-only access to releases and release items",
    "includes": ["ZohoSprints.projects.READ"]
  }, {
    "name": "ZohoSprints.release.CREATE",
    "description": "Permission to create releases",
    "includes": ["ZohoSprints.release.READ"]
  }, {
    "name": "ZohoSprints.release.UPDATE",
    "description": "Permission to update releases and link items to releases",
    "includes": ["ZohoSprints.release.READ"]
  }, {
    "name": "ZohoSprints.release.DELETE",
    "description": "Permission to delete releases",
    "includes": ["ZohoSprints.release.READ"]
  }, {
    "name": "ZohoSprints.timesheets.READ",
    "description": "Read-only access to time log entries",
    "includes": ["ZohoSprints.items.READ"]
  }, {
    "name": "ZohoSprints.timesheets.CREATE",
    "description": "Permission to create time log entries",
    "includes": ["ZohoSprints.timesheets.READ"]
  }, {
    "name": "ZohoSprints.timesheets.UPDATE",
    "description": "Permission to update time log entries",
    "includes": ["ZohoSprints.timesheets.READ"]
  }, {
    "name": "ZohoSprints.timesheets.DELETE",
    "description": "Permission to delete time log entries",
    "includes": ["ZohoSprints.timesheets.READ"]
  }, {
    "name": "ZohoSprints.projectusers.READ",
    "description": "Read-only access to portal and project users",
    "includes": ["ZohoSprints.projects.READ"]
  }, {
    "name": "ZohoSprints.projectusers.CREATE",
    "description": "Permission to invite users to the portal and add project members",
    "includes": ["ZohoSprints.projectusers.READ"]
  }, {
    "name": "ZohoSprints.projectusers.UPDATE",
    "description": "Permission to update user roles and project memberships",
    "includes": ["ZohoSprints.projectusers.READ"]
  }, {
    "name": "ZohoSprints.projectusers.DELETE",
    "description": "Permission to remove users from the portal and projects",
    "includes": ["ZohoSprints.projectusers.READ"]
  }, {
    "name": "ZohoSprints.comments.READ",
    "description": "Read-only access to work item comments",
    "includes": ["ZohoSprints.items.READ"]
  }, {
    "name": "ZohoSprints.comments.CREATE",
    "description": "Permission to add comments to work items",
    "includes": ["ZohoSprints.comments.READ"]
  }, {
    "name": "ZohoSprints.comments.UPDATE",
    "description": "Permission to update comments on work items",
    "includes": ["ZohoSprints.comments.READ"]
  }, {
    "name": "ZohoSprints.comments.DELETE",
    "description": "Permission to delete comments on work items",
    "includes": ["ZohoSprints.comments.READ"]
  }, {
    "name": "ZohoSprints.projectitemstatus.CREATE",
    "description": "Permission to create work item statuses in a project",
    "includes": ["ZohoSprints.projects.READ"]
  }, {
    "name": "ZohoSprints.projectitemstatus.UPDATE",
    "description": "Permission to update work item statuses in a project",
    "includes": ["ZohoSprints.projects.READ"]
  }, {
    "name": "ZohoSprints.projectitemstatus.DELETE",
    "description": "Permission to delete work item statuses in a project",
    "includes": ["ZohoSprints.projects.READ"]
  }, {
    "name": "ZohoSprints.teamusers.READ",
    "description": "Read-only access to workspace users",
    "includes": ["ZohoSprints.teams.READ"]
  }, {
    "name": "ZohoSprints.teamusers.CREATE",
    "description": "Permission to add users to the workspace",
    "includes": ["ZohoSprints.teamusers.READ"]
  }, {
    "name": "ZohoSprints.teamusers.UPDATE",
    "description": "Permission to update workspace user roles",
    "includes": ["ZohoSprints.teamusers.READ"]
  }, {
    "name": "ZohoSprints.teamusers.DELETE",
    "description": "Permission to remove users from the workspace",
    "includes": ["ZohoSprints.teamusers.READ"]
  }, {
    "name": "ZohoSprints.webhook.READ",
    "description": "Read-only access to webhook configurations",
    "includes": ["ZohoSprints.teams.READ"]
  }, {
    "name": "ZohoSprints.webhook.CREATE",
    "description": "Permission to create and update webhook subscriptions",
    "includes": ["ZohoSprints.webhook.READ"]
  }, {
    "name": "ZohoSprints.webhook.DELETE",
    "description": "Permission to delete webhook subscriptions",
    "includes": ["ZohoSprints.webhook.READ"]
  }, {
    "name": "ZohoSprints.meetings.READ",
    "description": "Read-only access to sprint meetings",
    "includes": ["ZohoSprints.sprints.READ"]
  }, {
    "name": "ZohoSprints.meetings.CREATE",
    "description": "Permission to create sprint meetings",
    "includes": ["ZohoSprints.meetings.READ"]
  }, {
    "name": "ZohoSprints.meetings.UPDATE",
    "description": "Permission to update sprint meetings",
    "includes": ["ZohoSprints.meetings.READ"]
  }, {
    "name": "ZohoSprints.meetings.DELETE",
    "description": "Permission to delete sprint meetings",
    "includes": ["ZohoSprints.meetings.READ"]
  }, {
    "name": "ZohoSprints.settings.READ",
    "description": "Read-only access to team-level settings and custom field definitions",
    "includes": ["ZohoSprints.teams.READ"]
  }, {
    "name": "ZohoSprints.settings.CREATE",
    "description": "Permission to create custom fields and team-level settings",
    "includes": ["ZohoSprints.settings.READ"]
  }, {
    "name": "ZohoSprints.settings.UPDATE",
    "description": "Permission to update custom fields and team-level settings",
    "includes": ["ZohoSprints.settings.READ"]
  }, {
    "name": "ZohoSprints.settings.DELETE",
    "description": "Permission to delete custom fields and team-level settings",
    "includes": ["ZohoSprints.settings.READ"]
  }]
};

<ConnectorPage connector={connector} />
