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
NameDescriptionTypeAdditional information
MinimumAmountSEK

The minimum allowed amount, in SEK

integer

None.

MinimumAmountEUR

The minimum 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,
    "MinimumAmountEUR": 2,
    "Levels": [
      {
        "LevelAmount": 1,
        "SMSCost": 2.0
      },
      {
        "LevelAmount": 1,
        "SMSCost": 2.0
      }
    ],
    "ID": 3,
    "Name": "sample string 4"
  },
  {
    "MinimumAmountSEK": 1,
    "MinimumAmountEUR": 2,
    "Levels": [
      {
        "LevelAmount": 1,
        "SMSCost": 2.0
      },
      {
        "LevelAmount": 1,
        "SMSCost": 2.0
      }
    ],
    "ID": 3,
    "Name": "sample string 4"
  }
]