| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 | [role="xpack"][testenv="platinum"][[ccr-resume-auto-follow-pattern]]=== Resume auto-follow pattern API++++<titleabbrev>Resume auto-follow pattern</titleabbrev>++++Resumes an auto-follow pattern.[[ccr-resume-auto-follow-pattern-request]]==== {api-request-title}`POST /_ccr/auto_follow/<auto_follow_pattern_name>/resume`[[ccr-resume-auto-follow-pattern-prereqs]]==== {api-prereq-title}* If the {es} {security-features} are enabled, you must have `manage_ccr` clusterprivileges on the cluster that contains the follower index. For more information,see <<security-privileges>>.[[ccr-resume-auto-follow-pattern-desc]]==== {api-description-title}This API resumes an <<ccr-auto-follow,auto-follow pattern>> that has been paused with the<<ccr-pause-auto-follow-pattern, pause auto-follow pattern API>>. When this APIreturns, the auto-follow pattern will resume configuring following indices fornewly created indices on the remote cluster that match its patterns. Remoteindices created while the pattern was paused will also be followed, unless theyhave been deleted or closed in the meantime.[[ccr-resume-auto-follow-pattern-path-parms]]==== {api-path-parms-title}`<auto_follow_pattern_name>`::  (Required, string) Specifies the name of the auto-follow pattern to resume.[[ccr-resume-auto-follow-pattern-examples]]==== {api-examples-title}This example resumes the activity of a paused auto-follow patternnamed `my_auto_follow_pattern`://////////////////////////[source,console]--------------------------------------------------PUT /_ccr/auto_follow/my_auto_follow_pattern{  "remote_cluster" : "remote_cluster",  "leader_index_patterns" :  [    "leader_index"  ],  "follow_index_pattern" : "{{leader_index}}-follower"}--------------------------------------------------// TEST[setup:remote_cluster]// TESTSETUP[source,console]--------------------------------------------------DELETE /_ccr/auto_follow/my_auto_follow_pattern--------------------------------------------------// TEST// TEARDOWN[source,console]--------------------------------------------------POST /_ccr/auto_follow/my_auto_follow_pattern/pause--------------------------------------------------// TEST//////////////////////////[source,console]--------------------------------------------------POST /_ccr/auto_follow/my_auto_follow_pattern/resume--------------------------------------------------// TESTThe API returns the following result:[source,console-result]--------------------------------------------------{  "acknowledged" : true}--------------------------------------------------
 |