AccountField
Field ID
Used as the key for corresponding element of the accountFields
dictionary
when calling the CreateAccount method
Possible values: non-empty
metadata-field
User visible name of the field.
Possible values: non-empty
Payment metadata field
Short description of the field that can be displayed under or next to input fields.
Start date
Detailed description of the field.
Transactions are downloaded beginning from that date
Whether or not the field is required.
If true
, the field shold be present in the accountFields
dictionary
when calling the CreateAccount method
false
For account types with an OAuth flow, this defines if the value must be provided during creation of the OAuth URL.
false
Data type of the field.
Auth
: Accounts of that type require OAuth2 authentication.Selection
: The value of the field should be selected from thevalues
array.
Possible values: [Text
, Url
, Auth
, Password
, Date
, TextLine
, Checkbox
, Selection
]
Text
If true
, the value of the field is generated
when the account is created.
Used for API keys and other credentials. The partner software should store the generated values and use them for future calls as values of account fields, provided while creating or updating an account.
true
The value of the field is read-only and cannot be changed.
true
Optional default value of the field that can be used to pre-fill the user input.
2021.11.29T00:00:00
values object[]nullable
If type
is Selection
then this array contains the available values.
Human readable name of the selection value.
Market place
Value of the selection for API usage.
amazon.de
Minimum value.
-100
Maximum value.
100
If type
is Auth
then the referenced fields are required
in order to obtain the redirect URL.
["start-date"]
{
"id": "metadata-field",
"name": "Payment metadata field",
"shortDescription": "Start date",
"description": "Transactions are downloaded beginning from that date",
"required": false,
"requiredDuringAuth": false,
"type": "Text",
"generated": true,
"readOnly": true,
"defaultValue": "2021.11.29T00:00:00",
"values": [
{
"name": "Market place",
"value": "amazon.de"
}
],
"minValue": "-100",
"maxValue": "100"
}