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
0
votes
0 answers

In here I'm trying to get particular employee's all data using Xero with .net

I'm using, Xero sdk for my .net project(using Xero.NetStandard.OAuth2.Api;using Xero.NetStandard.OAuth2.Model.PayrollAu;) public XeroAuth _xeroAuth; public PayrollAuApi ipayrollAUApi = new PayrollAuApi(); //************* private…
0
votes
1 answer

What is the distinction between a payment and transaction in the Xero API?

What is the distinction between a payment and transaction in the Xero API? Does a payment create a transaction? Or are transactions only created when they are manually added? Are all organic transactions coming in as payments, rather than…
be2213444
  • 607
  • 1
  • 4
  • 10
0
votes
1 answer

Unable to POST NZ employee openingBalances to Xero?

I am attempting to create a single opening balances record against an existing employee but keep getting a 400 Bad Request response with this detail... At least one NZ opening balance item is required in the request I am following the instructions…
Tommy Sharp
  • 65
  • 2
  • 8
0
votes
0 answers

PKCE flow Error code: 500 code challenge required

I'm trying to get the PKCE example to work, but I keep hitting Error code: 500 Error: invalid_request : code challenge required Here's a sample url, it does include a code_challenge param generated with the example…
gjvdkamp
  • 9,929
  • 3
  • 38
  • 46
0
votes
2 answers

Date format not accepted by invoices endpoint when sent from Azure data factory

I am trying to automate the extraction of data from Xero into my azure db, and have set up the authentication flow to get and refresh tokens via the key vault etc. However when it comes to calling various API's via a web activity, I run into issues…
0
votes
0 answers

Submitted and Authorized Invoice in Xero Api

I am try to Create Invoice in Xero using asp.net and i set Invoice Status Authorized and type ACCREC but I cant create it throw "The tax type field is mandatory" How to rectify this problem
0
votes
2 answers

xero api fails with unauthorized (401 or 403) after calling auth, refresh and gettenants when calling getinvoices

I'm a rank noob at this, so excuse my ignorance. I've got an MVC web application to login, get the access and refresh tokens, and tenant list OK. I can even get it to refresh the refresh token. No problems. When I try to run the GetInvoices endpoint…
kevin rowe
  • 58
  • 3
0
votes
0 answers

I want to integrate Xero with my WordPress and want to retrieve invoices data with invoice id

I want to integrate Xero with my WordPress and want to retrieve invoices data with invoice id . I referred some docs but they said to use composer but in WordPress I don't have composer to install library's. So some one help me out how to integrate…
0
votes
0 answers

Download document from Amazon S3 and send to Xero

I am exploring how to download document from Amazon S3 and then save it as an attachment on a Xero Invoice. Can I have help on this task? I am referencing my code using these two…
siri
  • 61
  • 3
0
votes
1 answer

How to get WorkflowMax API Keys?

Workflow max website not showing any details regarding API keys. Is there any way to get the necessary API keys?
Vel
  • 194
  • 1
  • 12
0
votes
0 answers

Xero Delete Connection

I am using Xero in my application. I try to delete Xero Connection using dll in asp.net .net framework but unable to delete connection. how to delete connection in xero using .net framework
0
votes
0 answers

[Xero][Quote] Can not store tracking category option for quote line item

I have the issue when creating or updating the Quote. I can not set TrackingCategory options for line items. I request api like document but it not success. The Tracking Category I have tracking category Here is my expected: my expected Please help…
Vu Ngyuen
  • 1
  • 1
0
votes
0 answers

Error when trying to get an access token in xero-laravel authorization process

i am integrating Xero to a laravel application for the first time and it has been chaotic.I am trying to use this package:https://github.com/ayles-software/xero-laravel which completes the first step of redirecting users to xero,and although…
Murenik
  • 1
  • 1
0
votes
1 answer

Integraring Xero Accounting API with PHP (Laravel)

I'm simply trying to implement an event that creates an invoice on Xero everytime a payment is processed on Laravel backend. Its been 3 days now trying to install their SDK, many non official packages and I still don't understand how to do that.…
user15785090
0
votes
3 answers

How to upload PDF file using request POST method and requests must be formatted as multipart MIME using python for xeroAPI?

I'm trying to upload PDF-file in the Xero account using the python request library (POST method) and Xeros FilesAPI said "Requests must be formatted as multipart MIME" and have some required fields (link) but I don't how to do that exactly...If I do…