get
https://example.com
GET /v2/cases/actions/reporter-candidates — List users who can be set as case reporter
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Returns affiliate users who can be set as the reporter on a support case. Replaces the removed GET /v2/cases/actions/watcher-candidates.
Query parameters
| Parameter | Type | Description |
|---|---|---|
caseId | string | Optional — excludes the case's current reporter from the results |
Response 200
200{
"success": true,
"data": {
"candidates": [
{
"userId": "usr::abc123",
"jiraAccountId": "5f8a...",
"name": "Jane Doe",
"email": "[email protected]",
"role": "affiliate_admin",
"roleLabel": "Admin",
"isCurrentUser": false
}
]
}
}Only active affiliate users with a linked Jira account are returned.
Required role
affiliate_super_admin or affiliate_admin only. affiliate_agent tokens are accepted by the route but rejected with 403 FORBIDDEN at the service layer — agents cannot list reporter candidates.
