DeactivateEvaluationForm
Deactivates an evaluation form in the specified Amazon Connect instance. After a form is deactivated, it is no longer available for users to start new evaluations based on the form.
Request Syntax
POST /evaluation-forms/InstanceId/EvaluationFormId/deactivate HTTP/1.1
Content-type: application/json
{
   "EvaluationFormVersion": number
}
    
      URI Request Parameters
The request uses the following URI parameters.
- EvaluationFormId
 - 
               
The unique identifier for the evaluation form.
Length Constraints: Minimum length of 1. Maximum length of 500.
Required: Yes
 - InstanceId
 - 
               
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
Length Constraints: Minimum length of 1. Maximum length of 100.
Required: Yes
 
Request Body
The request accepts the following data in JSON format.
- EvaluationFormVersion
 - 
               
A version of the evaluation form. If the version property is not provided, the latest version of the evaluation form is deactivated.
Type: Integer
Valid Range: Minimum value of 1.
Required: Yes
 
Response Syntax
HTTP/1.1 200
Content-type: application/json
{
   "EvaluationFormArn": "string",
   "EvaluationFormId": "string",
   "EvaluationFormVersion": number
}
    
      Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- EvaluationFormArn
 - 
               
The Amazon Resource Name (ARN) for the evaluation form resource.
Type: String
 - EvaluationFormId
 - 
               
The unique identifier for the evaluation form.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 500.
 - EvaluationFormVersion
 - 
               
The version of the deactivated evaluation form resource.
Type: Integer
Valid Range: Minimum value of 1.
 
Errors
For information about the errors that are common to all actions, see Common Errors.
- InternalServiceException
 - 
               
Request processing failed because of an error or failure with the service.
- Message
 - 
                        
The message.
 
HTTP Status Code: 500
 - InvalidParameterException
 - 
               
One or more of the specified parameters are not valid.
- Message
 - 
                        
The message about the parameters.
 
HTTP Status Code: 400
 - ResourceConflictException
 - 
               
A resource already has that name.
HTTP Status Code: 409
 - ResourceNotFoundException
 - 
               
The specified resource was not found.
- Message
 - 
                        
The message about the resource.
 
HTTP Status Code: 404
 - ThrottlingException
 - 
               
The throttling limit has been exceeded.
HTTP Status Code: 429
 
Examples
Example
The following example deactivates version 3 of the evaluation form.
Sample Request
{
   "InstanceId": "[instance_id]",
   "EvaluationFormId": "[evaluation_form_id]",
   "EvaluationFormVersion": 3
}
          
          
            Sample Response
{
   "EvaluationFormId": "[evaluation_form_id]",
   "EvaluationFormArn": "arn:aws:connect:[aws_region_code]:[account_id]:instance/[instance_id]/evaluation-form/[evaluation_form_id]",
   "EvaluationFormVersion": 3
} 
          
       
    
      See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: