POST
/api/repos/{repoId}/backfillPOST /api/repos/{repoId}/backfill
Path parameters
repoIdstringrequiredRequest body
sincestringprSincestringmaxPagesanywithReviewsbooleanwithWorkflowRunsbooleanResponses
200 성공400 입력 검증 실패(zod)401 미인증(JWT 쿠키 필요)403 권한 없음404 없음
cURL
curl -X POST https://sit.in-bridge.com/api/repos/{repoId}/backfill \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"since":"string","prSince":"string","maxPages":null,"withReviews":true,"withWorkflowRuns":true}'JavaScript
const res = await fetch("https://sit.in-bridge.com/api/repos/{repoId}/backfill", {
method: "POST",
headers: {
"Authorization": `Bearer ${token}`,
"Content-Type": "application/json"
},
body: JSON.stringify({
"since": "string",
"prSince": "string",
"maxPages": null,
"withReviews": true,
"withWorkflowRuns": true
})
});
const data = await res.json();