GET api/products/extra
Gives you a list of our available extra products
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of products
Collection of ExtraProductDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| BillingPeriod |
The period between billing dates, in months, if any |
integer |
None. |
| StartCostSEK |
The initial start-up cost, in SEK |
decimal number |
None. |
| StartCostEUR |
The initial start-up cost, in EUR |
decimal number |
None. |
| PeriodicCostSEK |
The recurring cost each billing period, in SEK |
decimal number |
None. |
| PeriodicCostEUR |
The recurring cost each billing period, in EUR |
decimal number |
None. |
| ID |
Product ID |
integer |
None. |
| Name |
Product name |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BillingPeriod": 1,
"StartCostSEK": 1.0,
"StartCostEUR": 1.0,
"PeriodicCostSEK": 1.0,
"PeriodicCostEUR": 1.0,
"ID": 1,
"Name": "sample string 2"
},
{
"BillingPeriod": 1,
"StartCostSEK": 1.0,
"StartCostEUR": 1.0,
"PeriodicCostSEK": 1.0,
"PeriodicCostEUR": 1.0,
"ID": 1,
"Name": "sample string 2"
}
]