Skip to content

Get intake issue detail

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

Gets the details of an intake issue

Path Parameters

workspace_slug:requiredstring
project_id:requiredstring
work_item_id:requiredstring

Scopes

projects.intakes:read

Get intake issue detail
bash
curl -X GET \
  "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" \
Response200
json
{
  "id": "project-uuid",
  "name": "Project Name",
  "identifier": "PROJ",
  "description": "Project description",
  "created_at": "2024-01-01T00:00:00Z"
}