You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 26, 2026. It is now read-only.
var issue = await client.Issues.CreateAsync("projectId", issueRequest);
var notes = await client.Issues.GetNotesAsync("projectId", issue.Iid); // Or any other issue
var note = await client.Issues.CreateNoteAsync("projectId", issue.Iid, new CreateIssueNoteRequest("Test"));
Response:
"JSON integer 2284136723 is too large or small for an Int32. Path 'id', line 1, position 16."
Possible cause:
class GitLabApiClient.Models.Notes.Responses.Note
Property "NoteableId" should be a long instead of an int
var issue = await client.Issues.CreateAsync("projectId", issueRequest);
var notes = await client.Issues.GetNotesAsync("projectId", issue.Iid); // Or any other issue
var note = await client.Issues.CreateNoteAsync("projectId", issue.Iid, new CreateIssueNoteRequest("Test"));
Response:
"JSON integer 2284136723 is too large or small for an Int32. Path 'id', line 1, position 16."
Possible cause:
class GitLabApiClient.Models.Notes.Responses.Note
Property "NoteableId" should be a long instead of an int