v1

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

Get parameter

Get account parameter registered for the organization. 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/{parameterId}

Path parameters

accountIdinteger required
Example:6912345

Account ID

parameterIdinteger required
Example:123456

Parameter ID.

For more information on program/account parameters, refer to the program parameters reference table.

Call the List program parameters endpoint to get the ID (parameter_id) to pass here.

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

descriptionstring

Parameter description

valid_untilstring date-time

Parameter validation date. RFC 3339 format.

idinteger

Parameter ID specific to the program/account

valid_fromstring date-time

Parameter start date. RFC 3339 format.

valuenumber float

Parameter value

Example response

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