v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Account parameters

List parameters

List account parameters. For more information on account parameters, refer to the account parameters guide. Account parameters are a subset of program parameters.

get/accounts/v1/accounts/{accountId}/parameters

Path parameters

accountIdinteger required
Example:6912345

Account ID

Response

OK

parameter_idinteger

Parameter ID. Parameter IDs can change depending on the environment and, consequently, are not listed in the program parameters reference table. Use the List program parameters endpoint to get the IDs for your program/account parameters.

namestring

Parameter name

scope'ACCOUNT' | 'PROGRAM'

Parameter scope

descriptionstring

Parameter description

idinteger

Parameter ID specific to the program/account

valid_fromstring date-time

Parameter start date. RFC 3339 format.

valid_untilstring date-time

Parameter validation date. RFC 3339 format.

valuenumber float

Parameter value

Example response

[
  {
    "parameter_id": 11,
    "name": "Prepaid rate",
    "scope": "ACCOUNT",
    "description": "Prepaid recharge rate",
    "id": 11,
    "valid_from": "2021-10-21T00:00:00Z",
    "valid_until": "2028-10-21T00:00:00Z",
    "value": 0.01
  }
]