How to Connect TeamSpirit to an AI Agent
Auth setup
1. Salesforce設定 > アプリケーション > 接続アプリケーション > 新規. 2. client_id/secret取得. 3. OAuth フロー (username-password or auth code). 4. instance_urlに対してAPI呼び出し.
Key facts
| Base URL | https://login.salesforce.com/services/data/v59.0/ |
| API version | Salesforce API v59.0 |
| Auth | Salesforce OAuth 2.0. TeamSpiritはSalesforce Platform上に構築。Salesforce Connected Appで認証。 |
| Token URL | https://login.salesforce.com/services/oauth2/token |
| Scopes | api, refresh_token |
| Request body | application/json |
| Pagination | SOQL: nextRecordsUrl in response. REST: N/A per object. |
| Rate limit | Salesforce limits: 100,000 API calls/24h (Enterprise). Concurrent: 25. |
| Error format | JSON: [{"errorCode":"...","message":"...","fields":[]}] |
Key endpoints
| Method | Path | Description |
GET | /sobjects/teamspirit__AtkWork__c | Get attendance records (勤怠レコード) |
POST | /sobjects/teamspirit__AtkWork__c | Create attendance record |
GET | /query?q=SELECT+... | SOQL query for TeamSpirit objects |
GET | /sobjects/teamspirit__AtkEmpDay__c | Get daily attendance details |
Quickstart
GET /services/data/v59.0/query?q=SELECT+Id,teamspirit__StartTime__c+FROM+teamspirit__AtkWork__c+LIMIT+10
Authorization: Bearer {access_token}
Response: {"records":[{"Id":"...","teamspirit__StartTime__c":"2024-01-15T09:00:00.000Z",...}]}
Agent pitfalls & tips
- Salesforce Platform上 — 全てのAPIはSalesforce REST/SOQL経由.
- カスタムオブジェクト名は teamspirit__ プレフィックス付き.
- SOQL必須 — TeamSpirit固有のオブジェクト・フィールド名を把握する必要あり.
- Sandbox (test.salesforce.com) でテスト推奨.
- 勤怠+工数+経費を一元管理 — ERP連携が強み.
Source: curated by KanseiLink from official documentation (docs) and registry checks. Last reviewed: 2026-04-07. Specs change — verify against the official docs before production use.
Frequently Asked Questions
What is TeamSpirit's AEO score?
▼
TeamSpirit has an AEO score of 0.80 and is rated A (Functional agent integration). AEO (Agent Engine Optimization) measures how well a SaaS service works with AI agents. Scores range from 0.00 to 1.00, with grades from AAA (best) to D (not agent-ready).
Is TeamSpirit AI-agent-ready?
▼
TeamSpirit is currently connectable for AI agent use. API access is available but no dedicated MCP server has been published yet. For detailed connection guides, auth setup, and known pitfalls, use the KanseiLink MCP tool.
How does TeamSpirit compare to other HR & People services?
▼
In the HR & People category, TeamSpirit is rated A. KanseiLink evaluates services based on MCP availability, API quality, documentation, auth-guide clarity, and integration recipe availability (methodology published). Visit the full rankings at kansei-link.com to see how TeamSpirit compares.
How can I integrate TeamSpirit with an AI agent?
▼
The fastest way to integrate TeamSpirit with an AI agent is through KanseiLink MCP. Install it with: npx @kansei-link/mcp-server — then use the search_services and get_service_detail tools to get the current auth setup, endpoints, rate limits, and agent-specific tips. This data is kept fresh from registry checks, curated official-doc guides, and agent reports.
How do I authenticate with TeamSpirit?
▼
Salesforce OAuth 2.0. TeamSpiritはSalesforce Platform上に構築。Salesforce Connected Appで認証。 Setup: 1. Salesforce設定 > アプリケーション > 接続アプリケーション > 新規. 2. client_id/secret取得. 3. OAuth フロー (username-password or auth code). 4. instance_urlに対してAPI呼び出し.
What are TeamSpirit's API rate limits?
▼
Salesforce limits: 100,000 API calls/24h (Enterprise). Concurrent: 25.