Blue 擁有強大的 API,具備 100% 的功能覆蓋,讓您能夠構建自定義集成和工作流程。
API 狀態
運營
≥ 99% 正常運行時間
降級
≥ 95% 正常運行時間
停機
< 95% 正常運行時間
一個以開發者為先的API
為擴展而建。
通過我們全面的 GraphQL API 訪問 Blue 的所有功能。由開發者為開發者打造。
100% 功能覆蓋
在 Blue 界面中提供的每個功能都可以通過我們的 API 訪問。沒有限制,沒有例外。
GraphQL 驅動
現代化的 GraphQL API,讓您精確請求所需的數據,既不多也不少。
經過實戰考驗
受到數千名開發者的信賴,每天處理數百萬次API調用,並保持99.9%的正常運行時間。
簡單、強大、直觀
使用我們全面的 GraphQL API 和 Python SDK,幾分鐘內即可開始。每個操作都簡單明瞭且有良好的文檔說明。
mutation NewRecord {
createTodo(input: {
todoListId: "list-123"
title: "Deploy new feature"
description: "Release v2.1 to production"
position: 65535
}) {
id
title
status
createdAt
}
}
mutation UpdateRecord {
updateTodo(input: {
id: "task-456"
title: "Deploy new feature ✓"
status: DONE
}) {
id
title
status
updatedAt
}
}
query ListRecords {
todoList(filter: {
companyIds: ["company-789"]
status: [ACTIVE, IN_PROGRESS]
}) {
items {
id
title
status
assignee {
name
email
}
createdAt
}
}
}
from bluepm import BlueAPIClient
# Initialize client
client = BlueAPIClient(
token_id="your_token_id",
secret_id="your_secret_id"
)
# Create a new record
task = client.todos.create(
list_id="list-123",
title="Deploy new feature",
description="Release v2.1 to production"
)
# List all projects
projects = client.projects.list(company_id)
print(f"Found {len(projects)} projects")