Questions tagged [xero-api]

For questions about the API of Xero, the cloud-based accounting application for small and medium businesses.

Official documentation: http://developer.xero.com

628 questions
-1
votes
1 answer

How can I fix the 'invalid_request' error when authenticating with Xero API in PowerAutomate?

I am trying to create an API call to Xero following this guide here As far as I understand I need to pass in a base64encoded string version of my clientID and ClientSecret. This is how my power automate Http request looks like But when I test it.…
-1
votes
1 answer

Xero webhooks with Node Red; OK, than not ok

I have been dealing with cryptography craziness since yesterday, I 've literally lost my sleep over this. I am implementing a node red solution to get webhooks from Xero to be written in a custom app. I have experienced a lot of issues with the…
efstaska
  • 1
  • 1
-1
votes
1 answer

"Prettier" extension of Swagger UI for website documentation

we are using swagger.io for documenting our REST API, please can you recommend how to make it even prettier for end-users once it's published on our website documentation subpage? We want to include some schemas/images and I very like how i.e. this…
-1
votes
1 answer

How to assign a "Bank Transaction" from a bank feed to an "Invoice" using Xero API

I'm developing a Xero integration for a client. We have a registration/membership system for customers, and we want to integrate this with Xero in order to detect payments and close the loop. It will look something like this: Our system will create…
Brett
  • 298
  • 2
  • 16
-1
votes
1 answer

Connecting to the XERO API

We are new to the XERO API and looking on how to initially create a connection request and establish a connection Any help greatly appreciated thanks john
johnmol
  • 11
-1
votes
2 answers

Able to get all invoices from xero but didn't able to get all account facing oauth_problem problem

import os import requests import base64 from xero.auth import OAuth2Credentials from xero import Xero from xero.constants import XeroScopes my_scope = [XeroScopes.OFFLINE_ACCESS, XeroScopes.ACCOUNTING_CONTACTS, XeroScopes.ACCOUNTING_SETTINGS,…
-1
votes
1 answer

Xero OAuth 2 token

I'm new to Xero api and Is it possible to request Xero OAuth 2 token from the windows console app without giving redirect Url? I tried several options and if not log and there is not created token, it has to show the popup for login. I need to find…
-1
votes
1 answer

How to build custom Zapier integration for Xero

I am attempting to build my own integration in zapier that will allow me to create quotes in Xero (a feature not currently supported natively). I've been using this this post and this reference to help me. I've gotten to the point where I'm…
Matthew
  • 13
  • 3
-1
votes
2 answers

How to update the status to Paid and update Amount Paid and Amount Due in XERO using API - PHP

I am trying to update an Invoice in XERO by using the XERO-API. I am able to save the invoice as 'Draft' which is an outstanding amount that the customer to pay. When the payment is done, I want to send a request to the Xero and want to change the…
Kunal Parekh
  • 380
  • 6
  • 24
-1
votes
1 answer

Getting Employee Address from Xero API

Using Xero API for PHP, I am able to retrieve a list of employees by using the following: $xero->load('PayrollAU\\Employee')->execute(); However, this does not return the employees address. Other information is returned (name, email, gender, etc)…
Lawrence Cooke
  • 1,567
  • 3
  • 26
  • 52
-1
votes
1 answer

Xero Api request limit is exceeding when returning bulk creditor invoices

I'm trying to retrieve creditor invoices with in date range. The client got more than 26000 records in their xero system. I have used paging to retrive all the creditor invoices then tried to filter the date and this ended up in error 'exceeding the…
Shereen
  • 119
  • 1
  • 17
-1
votes
1 answer

How to update Xero invoice using xero-Node?

I have integrate xero with my app for my accounts and billing. Now I want to update an invoice which is already created in past on xero. Is there any solution for that?? Any suggestion will be highly appreciable.
Tanumay Ghosh
  • 73
  • 1
  • 8
-1
votes
1 answer

Xero Java library, creating invoice gives "The request URL is invalid"

I'm using the latest Xero java client api's downloaded via gradle: compile group: 'com.xero', name: 'xero-java-sdk', version: '1.0.9' compile group: 'com.xero', name: 'xero-accounting-api-schema', version: '0.1.2' And I'm trying to create an…
-1
votes
1 answer

XERO There is an error in XML (1,1)

I've had code working for several years now and I had to upgrade the project to .Net 4. After upgrading the project, I am getting the following error after accessing any method: There is an error in XML document (1,1) - hexadecimal value 0x1F, is…
TRaymond
  • 41
  • 3
-1
votes
2 answers

How to update AmountDue value by InvoiceId in XERO API using C#

I am getting the list of Invoice details by Invoice Id. Now i want to update AmountDue by respective Invoice Id. i tried by below code: ByInvoiceId.AmountDue = Convert.ToDecimal(100.00); public_app_api.Invoices.Update(ByInvoiceId); but..Error as "A…
Muttu B C
  • 37
  • 5
1 2 3
41
42