GET api/products/balance
Gives you a list of our available balance products
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of products
Collection of BalanceProductDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| MinimumAmountSEK |
The minimum allowed amount, in SEK |
integer |
None. |
| MaximumAmountSEK |
The maximum allowed amount, in SEK |
integer |
None. |
| MinimumAmountEUR |
The minimum allowed amount, in EUR |
integer |
None. |
| MaximumAmountEUR |
The maximum allowed amount, in EUR |
integer |
None. |
| Levels |
Possible balance levels for leveling SMS costs, only for Swedish accounts |
Collection of BalanceProductLevel |
None. |
| ID |
Product ID |
integer |
None. |
| Name |
Product name |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"MinimumAmountSEK": 1,
"MaximumAmountSEK": 2,
"MinimumAmountEUR": 3,
"MaximumAmountEUR": 4,
"Levels": [
{
"LevelAmount": 1,
"SMSCost": 2.0
},
{
"LevelAmount": 1,
"SMSCost": 2.0
}
],
"ID": 5,
"Name": "sample string 6"
},
{
"MinimumAmountSEK": 1,
"MaximumAmountSEK": 2,
"MinimumAmountEUR": 3,
"MaximumAmountEUR": 4,
"Levels": [
{
"LevelAmount": 1,
"SMSCost": 2.0
},
{
"LevelAmount": 1,
"SMSCost": 2.0
}
],
"ID": 5,
"Name": "sample string 6"
}
]