跳转到主要内容
POST
/
incident
/
responder
/
add
添加处理人
curl --request POST \
  --url 'https://api.flashcat.cloud/incident/responder/add?app_key=' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "incident_id": "<string>",
  "person_ids": [
    123
  ],
  "notify": {
    "personal_channels": [
      "email"
    ],
    "follow_preference": true,
    "template_id": "<string>"
  }
}
'
{
  "error": {
    "code": "<string>",
    "message": "<string>"
  }
}

授权

app_key
string
query
必填

请求头

Content-Type
string
必填

请求体

application/json
incident_id
string
必填

故障ID

person_ids
integer[]
必填

新增分派人员列表

notify
object

通知方式,默认使用个人偏好

响应

200 - application/json
error
object

仅出现错误时返回