Sign in

Create issue in project

documented

Create a new issue in the specified project.

POST /projects/:id/issuesProjectsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://gitlab.com/api/v4/projects/{{$project_id}}/issues" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"title": "{{$title}}", "description": "{{$description}}", "labels": "{{$labels}}", "assignee_id": {{$assignee_id}}, "milestone_id": {{$milestone_id}}, "confidential": {{$confidential}}, "due_date": "{{$due_date}}", "weight": {{$weight}}}'
Create issue in project · GitLab · OpenIntegrations