class Lithic::Resources::AuthRules::V2

def promote(auth_rule_token, params = {})

Other tags:
    See: Lithic::Models::AuthRules::V2PromoteParams -

Returns:
  • (Lithic::Models::AuthRules::V2PromoteResponse) -

Parameters:
  • request_options (Lithic::RequestOptions, Hash{Symbol=>Object}, nil) --
  • auth_rule_token (String) -- Globally unique identifier for the Auth Rule.

Overloads:
  • promote(auth_rule_token, request_options: {})
def promote(auth_rule_token, params = {})
  @client.request(
    method: :post,
    path: ["v2/auth_rules/%1$s/promote", auth_rule_token],
    model: Lithic::Models::AuthRules::V2PromoteResponse,
    options: params[:request_options]
  )
end