Skip to content

Latest commit

 

History

History
106 lines (73 loc) · 2.03 KB

File metadata and controls

106 lines (73 loc) · 2.03 KB
title Delete intake issue
description Delete an intake issue from the inbox via Plane API. Permanently removes the triaged submission. Returns 204 on success.
keywords plane, plane api, rest api, api integration, work items, issues, tasks

Delete intake issue

DELETE /api/v1/workspaces/{workspace_slug}/projects/{project_id}/inbox-issues/{issue_id}

Deletes an intake issue

Path Parameters

Scopes

projects.intakes:write

curl -X DELETE \
  "https://api.plane.so/api/v1/workspaces/my-workspace/projects/project-uuid/inbox-issues/issue-uuid" \
  -H "X-API-Key: $PLANE_API_KEY" \
  # Or use -H "Authorization: Bearer $PLANE_OAUTH_TOKEN" \
import requests

response = requests.delete(
    "https://api.plane.so/api/v1/workspaces/my-workspace/projects/project-uuid/inbox-issues/issue-uuid",
    headers={"X-API-Key": "your-api-key"}
)
print(response.json())
const response = await fetch(
  "https://api.plane.so/api/v1/workspaces/my-workspace/projects/project-uuid/inbox-issues/issue-uuid",
  {
    method: "DELETE",
    headers: {
      "X-API-Key": "your-api-key",
    },
  }
);
const data = await response.json();
// 204 No Content