Skip to main content

Get Wallet Features

GET 

/profile/features

Feature in development

Returns the features configured for the current customer.

The following capabilities are exposed:

  • ONBOARDING - Onboarding for new customers for the country of registration.
  • DEPOSIT - Customer deposit
  • WITHDRAWAL - Customer withdrawal
  • PREPAID_CARD - Issuing and using prepaid cards
  • P2P_TRANSFER - Peer to Peer transfers between customers

The feature state depends on the specific partner contract agreements and rollout state.

Request

Query Parameters

    limit integer

    Possible values: >= 1 and <= 50

    Default value: 10

    This is the requested number of records to return. Max = 50. Default = 10.

    offset integer

    Default value: 0

    This is the requested starting position of the response entries, where 0 is the first record. Default = 0.

Responses

OK

Schema

    features

    object[]

  • Array [

  • name FeatureName (string)required

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

    Feature name.

    enabled boolean

    Default value: true

    Feature status.

  • ]

  • meta

    object

    Contains paging information regarding the the returned records, when response is paginated.

    The input for paginated query contains two parameters:

    • limit - This is the requested number of records to return. Defaults to 10 and maximum is 50.
    • offset - This is the requested starting position of the response, where 0 is the first record. Default = 0.

    Note! The total number of records is not returned, to prevent queries spanning on all records. If numberOfRecords<limit, this means no further pages are available. On request of offset beyond the last record, the returned numberOfRecords is 0.

    The number of previous pages can be calculated by dividing offset to limit.

    numberOfRecords integer

    This is the number of records returned in the lookup. Always numberOfRecords is smaller than or equal to limit.

    limit integer

    This is the requested number of records to be returned per page.

    offset integer

    This is the requested starting position of the response, where 0 is the first record.

    page integer

    This is the page of records on which the lookup starts. The starting page is 1.

Loading...