Skip to main content
PATCH
/
api
/
issues
/
v1
/
{issue_id}
/
mark-investigating
MarkInvestigating
curl --request PATCH \
  --url https://developer.synq.io/api/issues/v1/{issue_id}/mark-investigating \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "actor": {
    "name": "<string>",
    "email": {
      "userEmail": "[email protected]"
    }
  },
  "time": "2023-11-07T05:31:56Z",
  "requireNoExistingStatus": true
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

issue_id
string<uuid>
required

ID of the issue to mark as investigating.

Body

application/json
actor
Actor · object
required

Actor marking the issue as investigating.

time
string<date-time>
required

Time at which the issue was marked as investigating. Defaults to the current time. timestamp.gt = 2022-01-01T00:00:00Z timestamp.gt_lt = 2022-01-01T00:00:00Z timestamp.gt_lt_exclusive = 2022-01-01T00:00:00Z timestamp.gt_lte = 2022-01-01T00:00:00Z timestamp.gt_lte_exclusive = 2022-01-01T00:00:00Z timestamp.lt_now = true

requireNoExistingStatus
boolean

Ignore status change if the issue already has a status.

Response

200 - application/json

Success

The response is of type MarkInvestigatingResponse · object.