Method: Mints::Contact#get_order_item_groups

Defined in:
lib/contact.rb

#get_order_item_groups(options = nil) ⇒ Object

Get Order Item Groups.

Get a collection of order item groups.

Parameters

options

(Hash) – List of Resource Collection Options shown above can be used as parameter.

First Example

@data = @mints_contact.get_order_item_groups

Second Example

options = {
  "fields": "id"
}
@data = @mints_contact.get_order_item_groups(options)


708
709
710
# File 'lib/contact.rb', line 708

def get_order_item_groups(options = nil)
  return @client.raw("get", "/ecommerce/order-items-groups", options, nil, @contact_v1_url)
end