不糟糕的开发者体验 (DX)
我们知道糟糕文档的痛苦。我们将 TargetCRM 的 API 构建为可预测、标准且易于调试的。
实时 Webhooks
有效订阅 `deal.created`、`contact.updated` 或 `invoice.paid` 等事件。
速率限制和安全性
企业级安全性,支持 OAuth 2.0,并为高容量应用程序提供慷慨的速率限制。
// Example: Create a Contact
POST /api/v1/contacts
Authorization: Bearer <token>
Content-Type: application/json
{
"first_name": "Ali",
"last_name": "Ahmad",
"email": "ali@example.com",
"company": "Tech Solutions Sdn Bhd",
"tags": ["vip", "referral"]
}
// Response: 201 Created
{
"id": "ct_123456789",
"created_at": "2023-10-25T10:00:00Z"
}