Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion userguide/aviate/aviate-authentication.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ Call the auth endpoint with a `Basic` authorization header:
----
curl -s -X POST \
-H "Authorization: Basic ${TOKEN}" \
-H "Content-Type: application/json" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "" \
http://127.0.0.1:8080/plugins/aviate-plugin/v1/auth
----

Expand Down
2 changes: 1 addition & 1 deletion userguide/aviate/aviate-custom-invoice-sequencing.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ curl -v \
-H 'X-Killbill-CreatedBy: admin' \
-H 'Content-Type: text/plain' \
-d '!!com.killbill.billing.plugin.aviate.AviateTenantConfig
invoiceSequenceConfig:
invoiceSequenceConfig:
enabled: true
scope: "PER_ACCOUNT" # or "PER_TENANT"
start: 300001
Expand Down
36 changes: 18 additions & 18 deletions userguide/aviate/aviate-tax-tutorial.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -124,24 +124,24 @@ curl -v \
-H 'X-Killbill-CreatedBy: admin' \
-H 'Content-Type: text/plain' \
-d '!!com.killbill.billing.plugin.aviate.AviateTenantConfig
taxConfig:
taxItemAmountPrecision: 2
taxationTimeZone: UTC
taxCodes:
TAX_US_std_2025_19_6:
description: Sales Tax 19.6%
rate: 0.196
startingOn: 2025-01-01
stoppingOn: 2025-03-31
country: US
TAX_US_std_2025_20_0:
description: Sales Tax 20%
rate: 0.200
startingOn: 2025-04-01
stoppingOn: ""
country: US
products:
Premium: TAX_US_std_2000_19_6, TAX_US_std_2014_20_0' \
taxConfig:
taxItemAmountPrecision: 2
taxationTimeZone: UTC
taxCodes:
TAX_US_std_2025_19_6:
description: Sales Tax 19.6%
rate: 0.196
startingOn: 2025-01-01
stoppingOn: 2025-03-31
country: US
TAX_US_std_2025_20_0:
description: Sales Tax 20%
rate: 0.200
startingOn: 2025-04-01
stoppingOn: ""
country: US
products:
Premium: TAX_US_std_2025_19_6, TAX_US_std_2025_20_0' \
http://127.0.0.1:8080/1.0/kb/tenants/uploadPluginConfig/aviate-plugin
----

Expand Down
38 changes: 19 additions & 19 deletions userguide/aviate/aviate-tax.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,25 +45,25 @@ curl -v \
-H 'X-Killbill-CreatedBy: admin' \
-H 'Content-Type: text/plain' \
-d '!!com.killbill.billing.plugin.aviate.AviateTenantConfig
taxConfig:
taxItemAmountPrecision: 2
taxationTimeZone: UTC
taxCodes:
TAX_US_std_2000_19_6:
description: VAT 19.6%
rate: 0.196
startingOn: 2000-04-01
stoppingOn: 2014-01-01
country: US
TAX_US_std_2014_20_0:
description: VAT 20%
rate: 0.200
startingOn: 2014-01-01
stoppingOn: ""
country: US
products:
Standard: TAX_US_std_2000_19_6, TAX_US_std_2014_20_0
Sport: TAX_US_std_2000_19_6, TAX_US_std_2014_20_0' \
taxConfig:
taxItemAmountPrecision: 2
taxationTimeZone: UTC
taxCodes:
TAX_US_std_2000_19_6:
description: VAT 19.6%
rate: 0.196
startingOn: 2000-04-01
stoppingOn: 2014-01-01
country: US
TAX_US_std_2014_20_0:
description: VAT 20%
rate: 0.200
startingOn: 2014-01-01
stoppingOn: ""
country: US
products:
Standard: TAX_US_std_2000_19_6, TAX_US_std_2014_20_0
Sport: TAX_US_std_2000_19_6, TAX_US_std_2014_20_0' \
http://127.0.0.1:8080/1.0/kb/tenants/uploadPluginConfig/aviate-plugin
----

Expand Down
Loading