v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Performance > ReviewProcessTarget

Bulk creates a Review process target

Add multiple participants to the active review process and create the evaluations for them.

post/api/2026-07-01/resources/performance/review_process_targets/bulk_create

Request body

performance_review_process_idstring required

Review process ID

targets_access_idsstring[] required

List of access IDs to be added as participants

Example request

{
  "performance_review_process_id": "1",
  "targets_access_ids": [
    "1",
    "2",
    "3"
  ]
}

Response

OK

idstring required

Review process target ID (composed with performance_review_process_id and access_id)

access_idstring required

Participant access ID

performance_review_process_idstring required

Review process ID

materialized_process_target_idstring required

Materialized review process target ID

Example response

[
  {
    "id": "1-3",
    "access_id": "3",
    "performance_review_process_id": "1",
    "materialized_process_target_id": "5"
  }
]