For Agents
Programmatically 取得指定專案的基本設定 [1-1], 取得指定專案的註冊與同意書欄位設定 [1-7]. Covers 13 operations with bearer authentication.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the 醫藥通 2.0 API Documentation, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with 醫藥通 2.0 API Documentation API.
取得指定專案的基本設定 [1-1]
取得指定專案的註冊與同意書欄位設定 [1-7]
取得指定專案的紀錄頁欄位設定 [1-8]
取得病患(自己)的贈藥紀錄 [8-1]
HCP贈藥紀錄頁 - 病人清單頁籤 [8-2-3]
GET STARTED
Use for: I need to 取得指定專案的基本設定 [1-1], I want to 取得指定專案的註冊與同意書欄位設定 [1-7], Search for 取得指定專案的紀錄頁欄位設定 [1-8], Find all 取得病患(自己)的贈藥紀錄 [8-1]
Not supported: Does not handle payments, communications, or crm — use for developer tools only.
Jentic publishes the only available OpenAPI document for 醫藥通 2.0 API Documentation, keeping it validated and agent-ready.
醫藥通 2.0 API Documentation. The API exposes 13 endpoints secured with bearer authentication.
HCP取得病患的贈藥紀錄 [8-3]
取得上傳記錄 [11-1]
Patterns agents use 醫藥通 2.0 API Documentation API for, with concrete tasks.
★ Developer Tools Operations
Use the 醫藥通 2.0 API Documentation to perform developer tools operations programmatically. The API provides 13 endpoints covering core functionality including 取得指定專案的基本設定 [1-1], 取得指定專案的註冊與同意書欄位設定 [1-7], 取得指定專案的紀錄頁欄位設定 [1-8].
Call GET /config/project/{hash_id} to 取得指定專案的基本設定 [1-1]
Automated PAP 標準 Management
Automate pap 標準 operations by combining multiple 醫藥通 2.0 API Documentation endpoints. Agents can 取得指定專案的註冊與同意書欄位設定 [1-7] and then 取得指定專案的紀錄頁欄位設定 [1-8] in a single workflow.
Call GET /v1/projects/{hash_id}/form-configs to 取得指定專案的註冊與同意書欄位設定 [1-7], then verify the result
AI Agent Integration via Jentic
AI agents discover and call 醫藥通 2.0 API Documentation endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle bearer tokens manually.
Search Jentic for '取得指定專案的基本設定 [1-1]', load the operation schema, and execute with Jentic-managed credentials
13 endpoints — 醫藥通 2.
METHOD
PATH
DESCRIPTION
/config/project/{hash_id}
取得指定專案的基本設定 [1-1]
/v1/projects/{hash_id}/form-configs
取得指定專案的註冊與同意書欄位設定 [1-7]
/v1/projects/{hash_id}/record-configs
取得指定專案的紀錄頁欄位設定 [1-8]
/getPTMedicationRecord
取得病患(自己)的贈藥紀錄 [8-1]
/getHCPPatientList
HCP贈藥紀錄頁 - 病人清單頁籤 [8-2-3]
/hcpGetPTMedicationRecord
HCP取得病患的贈藥紀錄 [8-3]
/salesforce/upload-record
取得上傳記錄 [11-1]
/medicine/settings
儲存用藥提醒設定
/config/project/{hash_id}
取得指定專案的基本設定 [1-1]
/v1/projects/{hash_id}/form-configs
取得指定專案的註冊與同意書欄位設定 [1-7]
/v1/projects/{hash_id}/record-configs
取得指定專案的紀錄頁欄位設定 [1-8]
/getPTMedicationRecord
取得病患(自己)的贈藥紀錄 [8-1]
/getHCPPatientList
HCP贈藥紀錄頁 - 病人清單頁籤 [8-2-3]
Three things that make agents converge on Jentic-routed access.
Credential isolation
醫藥通 2.0 API Documentation bearer credentials are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — raw secrets never enter the agent context.
Intent-based discovery
Agents search by intent (e.g., '取得指定專案的基本設定 [1-1]') and Jentic returns the matching 醫藥通 2.0 API Documentation operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct 醫藥通 2.0 API Documentation integration: 1-3 days for auth handling, response parsing, and error cases. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Github
Alternative developer tools API
Choose Github when you need a different approach to developer tools operations
Gitlab
Alternative developer tools API
Choose Gitlab when you need a different approach to developer tools operations
Specific to using 醫藥通 2.0 API Documentation API through Jentic.
What authentication does the 醫藥通 2.0 API Documentation use?
The 醫藥通 2.0 API Documentation uses a Bearer token in the Authorization header. Through Jentic, these credentials are stored encrypted in the MAXsystem vault and injected at execution time, so raw secrets never enter the agent context.
Can I 取得指定專案的基本設定 [1-1] with the 醫藥通 2.0 API Documentation?
Yes. Use the GET /config/project/{hash_id} endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the 醫藥通 2.0 API Documentation?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I 取得指定專案的基本設定 [1-1] through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for '取得指定專案的基本設定 [1-1]'. Jentic returns the matching 醫藥通 2.0 API Documentation operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the 醫藥通 2.0 API Documentation have?
The 醫藥通 2.0 API Documentation exposes 13 endpoints covering pap 標準, 提醒小幫手 operations.
/hcpGetPTMedicationRecord
HCP取得病患的贈藥紀錄 [8-3]
/salesforce/upload-record
取得上傳記錄 [11-1]
/medicine/settings
儲存用藥提醒設定