엔터프라이즈 개발자 콘솔

Create API keys, manage webhooks, and inspect delivery audit

통합 롤아웃을 위한 엔터프라이즈 개발자 제어 화면입니다. API 키, 웹훅 엔드포인트, 납품 모니터링을 관리하는 데 사용하세요.

개발자 콘솔에는 유효한 액세스 토큰이 있는 로그인된 계정이 필요합니다.
OpenAPI 3.0 spec

Developer resources

Use the public OpenAPI spec and SDK starters to connect API keys, webhooks, training, and AI prelabel workflows.

Open OpenAPI JSON
Machine-readable REST surface for API keys, webhooks, training tasks, and 2D prelabel pipelines.
Headers: Access-Token and Team-Id are required for enterprise BFF routes.
Webhook deliveries include a signature for receiver-side verification.
Training and prelabel endpoints are included so model automation can start from the same spec.

SDK quick start

TypeScript
import { TjMakeBot } from '@tjmakebot/api';

const client = new TjMakeBot({
  accessToken: process.env.TJMAKEBOT_ACCESS_TOKEN!,
  teamId: process.env.TJMAKEBOT_TEAM_ID!,
});

// List projects
const { projects } = await client.listProjects();

// Create a webhook
const { webhook, signing_secret } = await client.createWebhook(
  'production callback',
  'https://example.com/tjmakebot/webhook',
  ['workflow.completed', 'delivery.failed'],
);

// Run 6D Pose initialization
const result = await client.pose6DInitialize({
  project_id: 'proj_xxx',
  model_type: 'foundationpose',
  image: { image_id: 'img_1', oss_key: '...', width: 1920, height: 1080 },
  label_id: 1,
  model_asset_key: 'mug_red_v2',
  camera_intrinsics: { fx: 1060, fy: 1060, cx: 960, cy: 540 },
});
Python
from tjmakebot import TjMakeBot

client = TjMakeBot(
    access_token=os.environ['TJMAKEBOT_ACCESS_TOKEN'],
    team_id=os.environ['TJMAKEBOT_TEAM_ID'],
)

# List projects
projects = client.list_projects()

# Create a webhook
result = client.create_webhook(
    label='production callback',
    callback_url='https://example.com/tjmakebot/webhook',
    event_types=['workflow.completed', 'delivery.failed'],
)

# Run 6D Pose initialization
pose = client.pose6d_initialize({
    'project_id': 'proj_xxx',
    'model_type': 'foundationpose',
    'image': {'image_id': 'img_1', 'oss_key': '...', 'width': 1920, 'height': 1080},
    'label_id': 1,
    'model_asset_key': 'mug_red_v2',
    'camera_intrinsics': {'fx': 1060, 'fy': 1060, 'cx': 960, 'cy': 540},
})
print(pose.results[0].translation)

개발자 쓰기 권한

현재 플랜: Free Studio
개발자 쓰기 권한: 개발자 콘솔에는 유효한 액세스 토큰이 있는 로그인된 계정이 필요합니다.
API 키, 웹훅 쓰기, 재생, 문의 작업은 엔터프라이즈 전용입니다
개발자 콘솔에는 유효한 액세스 토큰이 있는 로그인된 계정이 필요합니다.

Cloud service health

배포된 엔터프라이즈 서비스가 개발자 콘솔과 일치하는지 확인하세요.

service=-
store_mode=-
database_enabled=undefined
access_mode=-
developer_console_enabled=undefined
inquiry_ops_enabled=undefined
inquiry_ops_summary_enabled=undefined
webhook_replay_enabled=undefined
배포 불일치 감지
배포된 엔터프라이즈 서비스가 콘솔과 일치하지 않습니다. 실제 작업을 수행하기 전에 배포를 업데이트하세요.
health endpoint unavailable

엔터프라이즈 문의

엔터프라이즈 서비스 배포 정보입니다.
운영 개요: total=0
운영 개요: new=0
운영 개요: contacted=0
운영 개요: qualified=0
Action queue: missing_notes=0
Action queue: unassigned=0
Action queue: missing_outcome=0
Action queue: no_assets=0
Action queue: private_deployment=0
Action queue: api_webhook=0
Owner view: -
선택한 문의: 0
담당자 템플릿
Active templates
Archive templates
No enterprise inquiries yet.

Inquiry detail

No inquiry selected

문의 타임라인

아직 문의 타임라인이 없습니다.

API keys

웹훅

최근 생성된 시크릿

Copy them now. They are only shown once.

최근 활동

No recent activity yet.

API keys

No API keys yet.
API key usage history
No API key usage events yet.

웹훅

No webhooks yet.

Webhook deliveries

딜리버리 운영 요약: total=0
딜리버리 운영 요약: success=0
딜리버리 대기열: failed=0
딜리버리 대기열: replay_backlog=0
Webhook 상태: -
실패 진단
실패 진단: -
No deliveries yet.
개발자 콘솔

Back to enterprise inquiry