Adding reminders to stagesYou can configure reminders to be sent to moderators, review initiators, and participants who have not completed their tasks for given stage using the <reminders> and <reminder> elements. Reminders are sent when the duration is set to DAYS or BUSINESS_DAYS . Reminders are not sent when the duration is set to MINUTES or HOURS . For example, if you wanted to send a reminder to participants two days before the review ends and a reminder to the review initiator one day before the review ends, complete the following steps: 
 <?xml version="1.0" encoding="utf-8"?> 
<review_context xsi:schemaLocation="http://adobe.com/solutions/rca/reviewcontext" xmlns="http://adobe.com/solutions/rca/reviewcontext" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
<initiator domain="" canonical_name="" name="" oid="" email="" isGroup="false"/> 
    <review_id/> 
    <revision>0</revision>      
    <title/> 
... 
... 
    <stages> 
        <stage type="PARALLEL_REVIEW" wait_for_expiry="false" name="Basic-ParallelReview" duration="5" duration_unit="DAYS" taskType="WORKSPACE" non_expiring_stage="false"> 
        <start_date/> 
        <end_date/> 
        <status>PENDING</status> 
        <pre_process_hook/> 
        <post_process_hook/> 
        <assign_task_to_initiator_process/> 
        <disposition/> 
        <reviewers> 
        <assign_task_to_reviewer_process/> 
    </reviewers> 
    <moderators/> 
    <reminders> 
        <reminder recipient="REMAINING_PARTICIPANTS" days_before_expiry="2"/> 
        <reminder recipient="INITATORS" days_before_expiry="1"/> 
    <reminders> 
    </stage> 
... 
... 
</review_context>
        | 
     
       
       | 
    
// Ethnio survey code removed