Quickstart
Setup
Get your API token
Go to integrations and create a new API token or click "Show" to see an existing token.
Flow
Create a new account
curl -X POST https://api.fenerum.com/v1/accounts \
-H "Authorization <your token>" \
-H "Content-Type: application/json" \
-d '{ "company_name": "Acme Inc", "code": "acme-inc", "legal_address": "Some Street", "legal_zipcode": "1234", "legal_city": "New York", "legal_country": "DK", "type": "company"}'
Create a new subscription
curl -X POST https://api.fenerum.com/v1/subscriptions \
-H "Authorization <your token>" \
-H "Content-Type: application/json" \
-d '{ "account": "acme-inc", "terms": "<your terms>", "quantity": 5, "collection_method": "invoice"}'
Additional information
See our API Reference for more information.