Not supported by Billecta in anyway!
Automatically generated API for billecta.
To get started see Billecta docs
To begin, encode your username and password as follows:
$ base64 <<< "<username>:<password>"
Send the encoded b64-string to Billecta with the b64-string you just created in
the Authorization Header as such: Authorization: Basic <b64string>
curl -X "POST" https://api.billecta.com/v1/authentication/apiauthenticate -H "Content-Length:0" -H "Authorization: Basic <b64 string>" -H "Accept: application/json"
Snatch the SecureToken from the returned data and encode it as b64 once more:
$ base64 <<< <SecureTokenString>
To try it out try to fetch all Creditor with the b64 encode SecureToken in the
Authorization header
curl -X "POST" https://api.billecta.com/v1/creditors/creditors -H "Authorization: SecureToken <SecureTokenB64>"