22title : Overview
33---
44
5- To enable the intake feature, the user can hit a PATCH request on the project api with the body as
5+ <Warning >
6+ ** Deprecation notice**
7+
8+ We are deprecating all ` /api/v1/.../inbox-issues/ ` endpoints in favor of ` /api/v1/.../intake-issues/ ` .
9+
10+ ** End of support**
11+ 28th February 2025
12+
13+ ** What you need to do**
14+ To ensure uninterrupted service, replace all ` /inbox-issues/ ` references with ` /intake-issues/ ` in your codebase before the support end date.
15+ </Warning >
16+
17+ To enable the Intake feature, the user can hit a PATCH request on the project api with the body as
618
719``` http
8- GET /api/v1/workspaces/:workspace-slug/projects/:project_id/inbox -issues/
9- POST /api/v1/workspaces/:workspace-slug/projects/:project_id/inbox -issues/
10- GET /api/v1/workspaces/:workspace-slug/projects/:project_id/inbox -issues/:issue_id/
11- PATCH /api/v1/workspaces/:workspace-slug/projects/:project_id/inbox -issues/:issue_id/
12- DELETE /api/v1/workspaces/:workspace-slug/projects/:project_id/inbox -issues/:issue_id/
20+ GET /api/v1/workspaces/:workspace-slug/projects/:project_id/intake -issues/
21+ POST /api/v1/workspaces/:workspace-slug/projects/:project_id/intake -issues/
22+ GET /api/v1/workspaces/:workspace-slug/projects/:project_id/intake -issues/:issue_id/
23+ PATCH /api/v1/workspaces/:workspace-slug/projects/:project_id/intake -issues/:issue_id/
24+ DELETE /api/v1/workspaces/:workspace-slug/projects/:project_id/intake -issues/:issue_id/
1325```
1426
1527```
1628{
17- inbox_view :true,
29+ intake_view :true,
1830}
1931```
2032
21- To create an intake issue, the payload should be sent in the below format
33+ To create an Intake issue, the payload should be sent in the below format
2234
2335``` json
2436{
@@ -29,7 +41,7 @@ To create an intake issue, the payload should be sent in the below format
2941}
3042```
3143
32- ### Intake Issue Object
44+ ### Intake issue object
3345
3446** Attribute**
3547
@@ -90,7 +102,7 @@ To create an intake issue, the payload should be sent in the below format
90102 "pending_issue_count" : 0 ,
91103 "created_at" : " 2023-11-21T07:32:26.072634Z" ,
92104 "updated_at" : " 2023-11-21T07:32:26.072648Z" ,
93- "name" : " a dummy project hvh Inbox " ,
105+ "name" : " a dummy project with Intake " ,
94106 "description" : " " ,
95107 "is_default" : true ,
96108 "view_props" : {},
0 commit comments