curl --request PATCH \
--url https://api.example.com/api/v2/projects/{project_id}/evaluation-criteria/id/{criteria_id}/reorder \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"move_before_id": null
}
'{}Change the display order of evaluation criteria in the Freeplay UI. Use to organize criteria in a logical sequence for human review workflows.
curl --request PATCH \
--url https://api.example.com/api/v2/projects/{project_id}/evaluation-criteria/id/{criteria_id}/reorder \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"move_before_id": null
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
EmptyResponse()
The response is of type EmptyResponse · object.