get

GET /v2/cases/actions/reporter-candidates — List users who can be set as case reporter

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

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

ParameterTypeDescription
caseIdstringOptional — excludes the case's current reporter from the results

Response 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.

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here!