Overview
Deprecation notice
We are deprecating all /api/v1/.../inbox-issues/
endpoints in favor of /api/v1/.../intake-issues/
.
End of support
28th February 2025
What you need to do
To ensure uninterrupted service, replace all /inbox-issues/
references with /intake-issues/
in your codebase before the support end date.
To enable the Intake feature, the user can hit a PATCH request on the project api with the body as
To create an Intake issue, the payload should be sent in the below format
Intake issue object
Attribute
-
created_at
timestampThe timestamp of the time when the project was created
-
updated_at
timestampThe timestamp of the time when the project was last updated
-
status
the status of the issue can be in above mentioned status
- -2 - Pending
- -1 - Rejected
- 0 - Snoozed
- 1 - Accepted
- 2 - Duplicate
-
snoozed_till
The time untill the issue is snoozed.
-
source
The source describes the type intake issue from
-
created_by
,updated_by
uuidThese values are auto saved and represent the id of the user that created or updated the module
-
Project
uuidIt contains projects uuid which is automatically saved.
-
Workspace
uuidIt contains workspace uuid which is automatically saved.
-
inbox
intake id of the issue
-
issue
issue id of the issue
-
duplicate_to
Id of the issue of which the current issue is duplicate of.