Module: Companies
- Included in:
- CRM
- Defined in:
- lib/user/crm/companies.rb
Instance Method Summary collapse
-
#create_company(data) ⇒ Object
Create company.
-
#delete_companies(data) ⇒ Object
Delete Companies.
-
#get_companies(options = nil, use_post = true) ⇒ Object
Get companies.
-
#get_companies_support_data ⇒ Object
Get companies support data.
-
#get_company(id, options = nil) ⇒ Object
Get company.
-
#update_company(id, data) ⇒ Object
Update company.
Instance Method Details
#create_company(data) ⇒ Object
Create company.
Create a company with data.
Parameters
- data
-
(Hash) – Data to be submited.
Example
data = {
"title": "Company Title",
"alias": "Alias",
"website": "www.company.example.com",
"street1": "Company St",
"city": "Company City",
"region": "Company Region",
"postal_code": "12345",
"country_id": 144,
"tax_identifier": nil
}
@data = @mints_user.create_company(data)
73 74 75 |
# File 'lib/user/crm/companies.rb', line 73 def create_company(data) return @client.raw("post", "/crm/companies/", nil, data_transform(data)) end |
#delete_companies(data) ⇒ Object
Delete Companies.
Delete a group of companies.
Parameters
- data
-
(Hash) – Data to be submited.
Example
data = {
"ids": [ 21, 22 ]
}
@data = @mints_user.delete_companies(data)
108 109 110 |
# File 'lib/user/crm/companies.rb', line 108 def delete_companies(data) return @client.raw("delete", "/crm/companies/delete", nil, data_transform(data)) end |
#get_companies(options = nil, use_post = true) ⇒ Object
Get companies.
Get a collection of companies.
Parameters
- options
-
(Hash) – List of Resource Collection Options shown above can be used as parameter.
- use_post
-
(Boolean) – Variable to determine if the request is by ‘post’ or ‘get’ functions.
First Example
@data = @mints_user.get_companies
Second Example
= { "fields": "id, title", "sort": "-id" }
@data = @mints_user.get_companies()
Third Example
= { "fields": "id, title", "sort": "-id" }
@data = @mints_user.get_companies(, false)
33 34 35 |
# File 'lib/user/crm/companies.rb', line 33 def get_companies( = nil, use_post = true) return get_query_results("/crm/companies", , use_post) end |
#get_companies_support_data ⇒ Object
Get companies support data.
Get support data of companies.
Example
@data = @mints_user.get_companies_support_data
12 13 14 |
# File 'lib/user/crm/companies.rb', line 12 def get_companies_support_data return @client.raw("get", "/crm/companies/support-data") end |
#get_company(id, options = nil) ⇒ Object
Get company.
Get a company info.
Parameters
- id
-
(Integer) – Company id.
- options
-
(Hash) – List of Resource Collection Options shown above can be used as parameter.
First Example
@data = @mints_user.get_company(21)
Second Example
= { "fields": "id, title" }
@data = @mints_user.get_company(21, )
50 51 52 |
# File 'lib/user/crm/companies.rb', line 50 def get_company(id, = nil) return @client.raw("get", "/crm/companies/#{id}", ) end |
#update_company(id, data) ⇒ Object
Update company.
Update a company info.
Parameters
- id
-
(Integer) – Company id.
- data
-
(Hash) – Data to be submited.
Example
data = {
"title": "Company Title Modified"
}
@data = @mints_user.update_company(23, data)
89 90 91 |
# File 'lib/user/crm/companies.rb', line 89 def update_company(id, data) return @client.raw("put", "/crm/companies/#{id}", nil, data_transform(data)) end |