개발자 도구
API Playground
가입 없이 tracio.ai 워크스페이스 관리 API를 사용해 보세요. 요청을 구성하고 응답을 확인하며 웹훅과 방문자 데이터가 어떻게 작동하는지 살펴보세요.
시뮬레이션된 응답 — 이 playground는 실제 API에 연결되어 있지 않습니다. 응답은 API 형식을 보여주기 위한 예시 데이터입니다.
식별 이벤트를 수신할 웹훅 엔드포인트 등록
요청
curl -X POST \ https://app.tracio.ai/api/v1/workspaces/{workspaceId}/webhooks \ -H "Authorization: Bearer <clerk-session-jwt>" \ -H "Content-Type: application/json" \ -d '{ "url": "https://your-server.com/webhook/tracio", "events": []}'POST /api/v1/workspaces/{workspaceId}/webhooks
응답
"요청 보내기"를 클릭하여 응답을 확인하세요
응답 형식
관리 API 응답은 일관된 봉투(envelope)를 공유합니다: ok 플래그와 data 페이로드(또는 error). 방문자별 식별 결과는 웹훅을 통해 여러분의 서버로 전달됩니다.
{ "ok": true, // whether the request succeeded "data": { }, // the requested resource, or an array of them "error": null // populated with { code, message } on failure}