cURL
curl --request PATCH \ --url https://api.example.com/comments/:id/unresolve
{ "id": "<string>", "body": "<string>", "filePath": "<string>", "lineNumber": 123, "pullRequestId": "<string>", "userId": 123, "parentCommentId": "<string>", "resolved": true, "createdAt": "<string>", "updatedAt": "<string>" }
Authorization
Authorization: Bearer <token>
false
curl -X PATCH https://api.diffy.com/comments/1/unresolve \ -H "Authorization: Bearer <token>"
{ "id": "1", "body": "This function could be optimized by caching the result", "filePath": "src/utils/processor.ts", "lineNumber": 42, "pullRequestId": "123456789", "userId": 5, "parentCommentId": null, "resolved": false, "createdAt": "2026-03-01T10:30:00Z", "updatedAt": "2026-03-01T16:20:00Z" }