Getting Started with daisyBill API

This page will help you get started with the daisyBill API. You'll be up and running in a jiffy!

API Authentication & Configuration

📘

How to get an API Token

If you have API access, you can find your API token by navigating to daisyBill, clicking on your username found on the right side of the top nav-bar, and clicking Edit User.

You can request a new token by clicking the Generate Token button.

Your API token can be set as follows:

DaisybillApi.configuration.api_token = "123456789abcdef"
# => "123456789abcdef"

host and port are set by default:

DaisybillApi.configuration.host
# => "go.daisybill.com"

DaisybillApi.configuration.port
# => 443

See the daisybill_api gem docs for more information

Examples