| 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
/api/v1/workspaces/{workspace_slug}/projects/{project_id}/inbox-issues/{issue_id}
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