Skip to main content

Feature

Defines embedded wallet feature configuration information.

nameFeatureName (string)required

Feature name.

Possible values: [ONBOARDING, DEPOSIT, WITHDRAWAL, PREPAID_CARD, P2P_TRANSFER]

enabledboolean

Feature status.

Default value: true
scope object[]

Defines the scope of the feature configuration based on the customer's profile location. If the scope is not defined the capability is globally set. If the feature is enabled only for certain countries, they are listed. Optionally it might be restricted to certain states for US territories.

  • Array [
  • countryCodeCountryCode (string)required

    ISO-3166 Alpha 2

    Possible values: >= 2 characters and <= 2 characters

    Example: GB
    statesstring[]

    USPS State Abbreviations.

    Possible values: >= 2 characters and <= 2 characters

  • ]
  • Feature
    {
    "name": "ONBOARDING",
    "enabled": true,
    "scope": [
    {
    "countryCode": "GB",
    "states": [
    "AL"
    ]
    }
    ]
    }