class MailchimpMarketing::AutomationsApi

def remove_workflow_email_subscriber(workflow_id, body, opts = {})

Remove subscriber from workflow
def remove_workflow_email_subscriber(workflow_id, body, opts = {})
  fail ArgumentError, "Missing required param: 'workflow_id'" if workflow_id.nil?
  fail ArgumentError, "Missing required param: 'body'" if body.nil?
  query_params = {}
  post_body = @api_client.object_to_http_body(body)
  local_var_path = '/automations/{workflow_id}/removed-subscribers'.sub('{' + 'workflow_id' + '}', workflow_id.to_s)
  data = @api_client.call_api(:POST, local_var_path,
    :query_params => query_params,
    :body => post_body)
  return data
end