Questions tagged [myob]

MYOB is a company that produces a number of accounting packages aimed at different company sizes and requirements (e.g. General Accounting, Inventory, Payroll, Payments, ...). It offers a programmatic interface for querying and importing information through a pseudo SQL ODBC driver (AccountRight V19) and more recently through REST based APIs (AccountRight Live, Essentials, Cashbook, ...).

MYOB is a company that produces a number of accounting packages aimed at different company sizes and requirements (e.g. General Accounting, Inventory, Payroll, Payments, ...). It offers a programmatic interface for querying and importing information through a pseudo SQL ODBC driver (AccountRight V19) and more recently through REST based APIs (AccountRight Live, Essentials, Cashbook, ...).

More information about developing against MYOB products can be found in their developer portal - http://developer.myob.com/ and on samples provided on github - https://github.com/MYOB-Technology

79 questions
0
votes
1 answer

Import a description-only line to MYOB

I'm writing a small application that generates a CSV file for import into MYOB. My client has requested the ability to import an invoice line that contains only the "Description" field for including in the invoice but which has no value. When I try…
David Clarke
  • 12,888
  • 9
  • 86
  • 116
0
votes
1 answer

How to pass function Parameter when calling below function from other method in c#

Function wants to call from another Method. public virtual void Update(CompanyFile cf, T entity, ICompanyFileCredentials credentials, Action onComplete, Action onError, ErrorLevel errorLevel =…
Sujit Patel
  • 155
  • 8
0
votes
1 answer

MyOB AccountRight API | Updating a Customer's "specific" Address

MyOB's AccountRight Documentation page provides a sample for Editing a Customer based on its UID & RowVersion. However, it does not cover how to update specific address records associated to that customer. Say for example i have a customer with…
Nii
  • 450
  • 6
  • 25
0
votes
1 answer

Getting Myob AccountRight API Access token error

I am trying to get access token from MYOB. The POST call i make returns a "400 Bad Request error" i'm using "axios" to make the POST call i already got the Access code which i use in the data i'm sending in the POST call here is my code const…
0
votes
1 answer

Is ICompanyFileCredentials required when making calls in .net SDK MYOB

I am trying to integrate MYOB .net SDK into my web application (C#). I have some questions about ICompanyFileCredentials. It's the log on credential for a company file. Is it compulsory to submit it when making a call to the service like in this…
loveprogramming
  • 538
  • 2
  • 5
  • 22
0
votes
1 answer

How do I Connect an Azure Function App to MYOB?

I am try to connect an Azure Function App to the MYOB API. I can get it to work running the Azure app from my desktop, but doesn't work when I move it to the cloud. The published code is - var developerKey = "YOUR API KEY"; var developerSecret =…
DJXL
  • 11
  • 1
0
votes
1 answer

How do I determine whether I need to upgrade the dot net framework given change to TLS version?

MYOB has advised that as of 30th September 2018 the MYOB API will no longer accept connections using TLS1.0 I have a Winforms application which connects to MYOB Accountright via the API using the SDK I am wondering if there are any specific changes…
Kirsten
  • 15,730
  • 41
  • 179
  • 318
0
votes
2 answers

Create Purchase order using API in MyOB account using c#

I want to create PO using c# Api in My-ob account.anybody have suggestion please help.Thanks in advance
Arun Solanki
  • 174
  • 11
0
votes
1 answer

ODBC Error "Cannot launch MYOB" when data file is on a network drive on Windows 10

My client has a new PC running Windows 10 An add on solution which makes use of the ODBC driver works if the data file is on C: However if the data file is on a network drive the ODBC access fails with error "Cannot launch MYOB" The old Windows XP…
Kirsten
  • 15,730
  • 41
  • 179
  • 318
0
votes
1 answer

Acumatica REST API New ID based on numbering sequence

I have a custom webservice endpoint based on the Customer object and can successfully POST (actually PUT in Acumatica) new records. However, I am required to pass a CustomerId with the request. Can anyone point me in the right direction so that the…
0
votes
1 answer

Myob Integration with salesforce

I am integrating Account Right Live with Apex using OAuth 2.0 . using the documentation of Myob. We really Dont want to show Login screen. Is there any method to Authenticate user using OAuth 2.0 with Myob Account Username password Method ? Do Myob…
0
votes
1 answer

Import a Null value into Acumatica

I am trying to import an Null value into Acumatica. Specifically I am trying to remove the GL Expense Account on a number of Vendor Records. I have tried, ='', ="", =" ",=' ',=NULL,NULL,='NULL', in the Value field of the import scenario. I am…
0
votes
1 answer

MYOB ODBC ASP.NET application issues during insert command from IIS 10.0

I am trying to develop a ASP.NET Web API for MYOB that runs within IIS. That will allow me to insert/update/select different pieces of information from a MYOB company file. At the moment within development everything works perfectly from within VS…
0
votes
1 answer

PHP - Myob Api update to sales/invoice/professional not working

I can insert and get from Sales/Invoice/Professional but I can not update. It doesn't give me any error it just return null, doesn't give me any curl error, but also didn't update anything. my working header for get and insert as follow…
jmjap
  • 166
  • 13
0
votes
1 answer

MYOB ODBC Driver changing working directory to temp using Compojure

I've written a little internal webapp that I use to import invoices from our jobcard database into MYOB. I've written it using Clojure and Compojure, and it actually works pretty well, and it was also a good learning exercise for me. However, I've…
Mike
  • 3,356
  • 3
  • 29
  • 27