Rss   Itwitter   Ifacebook   Icontact   Lock Votre compte

Developer's center

Where to start

Ruby On Rails sample code

To use this API you need :

  • An entreprise-facile account

  • On this account, one application Bureau Virtuel, ma-facturation, or gestion-auto-entrepreneur

  • On one of these applications above, you need to activate the APIs in users/api setup


Required info

After the above step, here's the info you must have :

  • The user login and password

  • The server address and file number

  • On one of these applications above, you need to activate the APIs in users/api setup


Try it manually

Here's how to try the APIs manually :

  • Login to your application using a browser, and go to your invoices for example

  • Your current browser address will be something like https://bo.entreprise-facile.com/bill_sheets/list/10232 (Where 10232 will be replaced by your own file number)

  • Add .xml at the end of the URL, https://bo.entreprise-facile.com/bill_sheets/list/10232.xml

  • As a result you get a paginated list of bills in XML format

  • Another try : go to one of your bills. Your current browser address is close to https://bo.entreprise-facile.com/bill_sheets/show/10232/38580 (Where 10232 will be replaced by your own file number, and 38580 will be replaced by the id of the bill you're looking at)

  • Add .xml at the end of the URL, https://bo.entreprise-facile.com/bill_sheets/show/10232/38580.xml

  • As a result you get your bill displayed in XML format


Automate it

Now to automate :

  • If you're using a REST based library to access the API, provide server address, login, password, and reproduce the data model of the APis in your app

  • If you're not, and access the server using http calls, you'll have to rebuild the URLs yourself using the above examples.