Class: Bling::NotaServico

Inherits:
Object show all
Includes:
HTTParty
Defined in:
lib/bling/nota_servico.rb

Class Method Summary collapse

Class Method Details

.salvar_nota_servico(attributes = {}) ⇒ Object

Salva uma nota de serviço

Parâmetros:

apikey - API Key obrigatória para requisiçãoes na plataforma Bling

xml - Path para XML



24
25
26
27
28
29
30
# File 'lib/bling/nota_servico.rb', line 24

def salvar_nota_servico(attributes = {})
  apikey = attributes[:apikey]
  xml    = attributes[:xml]

  full_data = self.send(:post, '/notaservico/json', { query: { apikey: apikey, xml: xml } } )
  get_response(full_data["retorno"])
end