01
언제 사용하는가
클레르크 백엔드 REST API 탐색기 및 실행자입니다.
태그를 둘러보고, 엔드포인트 스키마를 확인하고, 인증된 요청을 실행할 수 있습니다.
사용자는 사용자를 나열하거나 조직을 관리하거나 클레르크 API 엔드포인트를 호출하는 경우에 이를 사용합니다.
02
따라 하는 방법
- curl -s -X POST "https://api.clerk.com/v1/organizations/${ORG_ID}/invitations" \을 실행합니다.
- curl -s -X PATCH "https://api.clerk.com/v1/users/${USER_ID}" \을 실행합니다.
- curl -s "https://api.clerk.com/v1/users?limit=100&offset=0&order_by=-created_at&created_at=gt:$(date -d '7 days ago' +%s 2>/dev/null || date -v-7d +%s)000" \을 실행합니다.
- curl -s -X DELETE "https://api.clerk.com/v1/users/${USER_ID}" \을 실행합니다.
- /users/{user_id} 세션을 실행합니다.
03
설치 방법
npx skills add installs: 24253 --skill clerk-backend-api