curl --request GET \
--url https://api.caret.so/v1/invites?limit=20&offset=0 \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"id": "inv_123",
"email": "user@example.com",
"code": "abc123xy",
"role": "member",
"expiresAt": "2026-02-27T10:00:00Z",
"createdAt": "2026-01-28T10:00:00Z",
"isUrlInvite": false,
"folders": [
{
"id": "fol_456",
"name": "Marketing"
}
]
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 1
}
}
워크스페이스의 대기 중인 모든 초대의 페이지네이션된 목록을 조회합니다
curl --request GET \
--url https://api.caret.so/v1/invites?limit=20&offset=0 \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"id": "inv_123",
"email": "user@example.com",
"code": "abc123xy",
"role": "member",
"expiresAt": "2026-02-27T10:00:00Z",
"createdAt": "2026-01-28T10:00:00Z",
"isUrlInvite": false,
"folders": [
{
"id": "fol_456",
"name": "Marketing"
}
]
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 1
}
}
표시 Invite
admin, member 중 하나.curl --request GET \
--url https://api.caret.so/v1/invites?limit=20&offset=0 \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"id": "inv_123",
"email": "user@example.com",
"code": "abc123xy",
"role": "member",
"expiresAt": "2026-02-27T10:00:00Z",
"createdAt": "2026-01-28T10:00:00Z",
"isUrlInvite": false,
"folders": [
{
"id": "fol_456",
"name": "Marketing"
}
]
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 1
}
}