Update Multiple Performer Prompts
Update multiple performer prompts for the specified task ID with revised instructions or content as required.
PATCH
/cs-close-api/tasks/{id}/performer-prompts
curl \
--request PATCH 'https://customer.trintech.com/cs-close-api/tasks/{id}/performer-prompts' \
--header "Content-Type: application/json" \
--data '[{"response":"string","taskId":42,"questionNumber":42}]'
Request examples
[
{
"response": "string",
"taskId": 42,
"questionNumber": 42
}
]
Response examples (200)
{
"totalProcessed": 42,
"successCount": 42,
"successResults": [
{
"success": true,
"id": "string",
"message": "string"
}
],
"failureCount": 42,
"failedResults": [
{
"success": true,
"id": "string",
"message": "string"
}
]
}