Questions tagged [xeroizer]
10 questions
1
vote
1 answer
Xeroizer::ApiException : QueryParseException: No property or field 'inv_id' exists
I am Trying to get all the invoices in a single API hit.
Because, for every user having 100's of invoices.
It will exceed the API limit (Minute Limit: 60 calls in a rolling 60 second window).
I am trying to store all the invoice id into a single…

i'm_a_good_friend
- 11
- 4
1
vote
2 answers
Sudden Certificate Verify Failed on Xero Public Application
Our staging server is connecting to our Xero Public Application perfectly fine, that is up until now (Dec 7, 2016). For some strange reason it is now returning the following error:
OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=SSLv3…

Ardee Aram
- 4,740
- 8
- 36
- 37
0
votes
1 answer
Delete Invoice from Xero
I'm trying to delete an invoice from Xero by updating its status to "DELETED". Following the xeroizer github page I have tried the following:
xero = XeroApp.find_by(business_id: 270);
invoice = xero.find_invoice_by_ref(372).first
delete_invoice =…

Sagar Pandya
- 9,323
- 2
- 24
- 35
0
votes
1 answer
Xeroizer RateLimitExceeded when using batch_save
I'm using the Xero API to retrieve all Invoices in this month, then retrieving all CreditNotes, then I plan to allocate credits as appropriate.
Before doing that, I need to authorise all my Invoices and CreditNotes. When I get to the point of saving…

bdx
- 3,316
- 4
- 32
- 65
0
votes
0 answers
Xero API: How to fetch journals by defined time period
I am going to fetch our customers journals data from Xero API to our application. Now I am wondering how I can do that.
Our customer is started their business at 2017-01-01, and they have more than 100 journals in one year. It means that I can't…

kiuru
- 1
- 1
0
votes
2 answers
Xero - Intent To Receive Ruby
This is the params coming from Xero
{"events"=>nil,
"firstEventSequence"=>0,
"lastEventSequence"=>0,
"entropy"=>"KFDXIMNLPDAMRBOEVAVF",
"controller"=>"admin/billing/webhooks",
"action"=>"handle_hook",
"webhook"=>
{"events"=>nil,
…

Vishal G
- 1,521
- 11
- 30
0
votes
0 answers
Xeroizer partner application: renew access token not working Rails 4.2.0 Ruby 2.2.9
I am using a ruby gem Xeroizer and partner application https://github.com/waynerobinson/xeroizer and generated pem file as instructed in this link. when I renew access token to obtain long term connection then upon token renewal everything sets up…

M.Umer
- 71
- 4
0
votes
1 answer
Update XERO Item after fetching item fails
I am using the xeroizer gem and facing some issues.
Here is what I have in my controller:
items_found = Item.where(code: codes)
if items_found
xero.Item.batch_save do
binding.pry
items_found.each do |existing_item|
if…

alexts
- 180
- 2
- 13
0
votes
1 answer
Void Overpayment through xero api
I am trying to void overpayments through the xero api.
What I do is create an overpayment through the Bank Transactions end point with type RECIVE-OVERPAYMENT.
It creates the overpayment and then I save the OverpaymentID, but I can't seem to find…

IDP
- 75
- 6
0
votes
1 answer
how to get/post Timesheet using xeroizer?
I wasn't able to find way to post time-sheet to XERO api using xeroizer gem.
Does xeroizer support Time-sheet get/post feature?

Batsal Awaley
- 45
- 6