Monitor an issue
Parameters
| Name | In | Type | Description |
|---|---|---|---|
issue_id
required
|
path | integer |
The issue ID
e.g. 123
|
Request body
users
object[]
name
string
email
string
Responses
-
201
Resource created successfully
X-Mantis-UsernameX-Mantis-LoginMethodX-Mantis-Version - 400 Bad Request
- 404 Entity not found
cURL
curl -X POST \
-H "Authorization: Bearer $MANTIS_TOKEN" \
-H "Content-Type: application/json" \
https://yourmantishubname.mantishub.io/api/rest/issues/123/monitors \
-d '{
"users": [
{
"name": "John Doe",
"email": "john@example.com"
}
]
}'
Request body · application/json
{
"users": [
{
"name": "John Doe",
"email": "john@example.com"
}
]
}