返回顶部
🇺🇸 English
🇨🇳 简体中文
🇨🇳 繁體中文
🇺🇸 English
🇯🇵 日本語
🇰🇷 한국어
🇫🇷 Français
🇩🇪 Deutsch
🇪🇸 Español
🇷🇺 Русский
d

digiforma

Query Digiforma training management platform via GraphQL API. Use when asked about trainees, sessions, invoices, programs, trainers, or any training data.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
492
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

digiforma

# Digiforma GraphQL API Digiforma is a French training management platform (centre de formation). Query it via GraphQL. ## Authentication All requests use Bearer token auth. The API key is stored in environment variable `DIGIFORMA_API_KEY`. ## Endpoint POST https://app.digiforma.com/api/v1/graphql ## How to query Use curl: ```bash curl -s -X POST https://app.digiforma.com/api/v1/graphql \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $DIGIFORMA_API_KEY" \ -d '{"query": "YOUR_GRAPHQL_QUERY"}' ``` ## Common queries ### List trainees (stagiaires) ```graphql { trainees(perPage: 20, page: 1) { items { id firstName lastName email phone } pagination { totalItems totalPages } } } ``` ### Search trainee by name ```graphql { trainees(perPage: 10, page: 1, search: "NOM") { items { id firstName lastName email phone } } } ``` ### List training sessions ```graphql { trainingSessions(perPage: 20, page: 1) { items { id name status startDate endDate program { name } } pagination { totalItems totalPages } } } ``` ### List programs ```graphql { programs(perPage: 20, page: 1) { items { id name duration } pagination { totalItems totalPages } } } ``` ### List invoices ```graphql { invoices(perPage: 20, page: 1) { items { id number amount status dueDate company { name } } pagination { totalItems totalPages } } } ``` ### List trainers (formateurs) ```graphql { trainers(perPage: 20, page: 1) { items { id firstName lastName email } pagination { totalItems totalPages } } } ``` ### Training session details ```graphql { trainingSession(id: ID) { id name status startDate endDate program { name } trainees { firstName lastName email } trainer { firstName lastName } } } ``` ## Pagination Always use perPage and page. Check pagination.totalPages to know if more pages exist. ## Important notes - All dates are ISO format - Status values: draft, planned, ongoing, completed, cancelled - Always paginate large results (perPage max ~50) - For complex filters, combine search with status filters

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 digiforma-1776316870 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 digiforma-1776316870 技能

通过命令行安装

skillhub install digiforma-1776316870

下载

⬇ 下载 digiforma v1.0.0(免费)

文件大小: 1.47 KB | 发布时间: 2026-4-16 17:01

v1.0.0 最新 2026-4-16 17:01
Initial release of Digiforma skill.

- Enables querying Digiforma's training management platform using the GraphQL API.
- Supports retrieval of trainees, sessions, invoices, programs, and trainers.
- Authentication via Bearer token using the DIGIFORMA_API_KEY environment variable.
- Includes example GraphQL queries for common use cases.
- Details pagination and important usage notes for efficient data access.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部