Skip to main content

48 posts tagged with "Multi-v2"

View All Tags

Version 2.6.0

· 3 min read
Adrian Mizzi

What's New

  • New APIs for managing invites for corporate users
    • POST /corporates/{id}/invites/validate
    • POST /corporates/{id}/invites/consume

What's Changed

  • Change to field length for nameOnCard. Previously 30 characters, now 27 characters

    • POST /managedcards//create
  • Addition of error codes

    • POST /corporates/{id}/users/mobile/verify
    • POST /corporates/{id}/users/email/send_verification_code
    • POST /consumers/{id}/mobile/verify
    • POST /consumers/{id}/email/send_verification_code

Version 2.5.2

· 6 min read
Adrian Mizzi

What's Changed

  • Addition of field cardholderMobileNumber when creating and updating a managed card. The card holder may receive a security code on mobile when spending online with the card (3D Secure). The field is currently optional (to avoid breaking existing integrations), but will eventually become mandatory.

    • POST /managedcards//create
    • POST /managed_cards/{id}/update
    • POST /managed_cards/get
    • POST /managed_cards/{id}/freeze
    • POST /managed_cards/{id}/unfreeze
    • POST /managed_cards/{id}/remove
    • POST /managed_cards/{id}/get
  • Removal of fields fiProvider and channelProvider from all methods

  • Removal of field createNow when creating managed account and managed card. Instruments are always created "now".

    • POST /managedaccounts//create
    • POST /managedcards//create

Version 2.5.1

· 6 min read
Adrian Mizzi

What's Changed

  • Change in field name defaultCurrency to baseCurrency in Corporate and Consumer Identities
  • Changed allowedLimit to remainingLimit type to Currency Amount. Currency is the same as baseCurrency
  • Added enhancedCompanyChecksVerified to Corporate Identity
  • Added enhancedDueDiligence to Consumer Identity
  • Reverted a change in a previous release and re-introduced mandatory email and mobile number to Consumer Identity

Version 2.5.0

· 2 min read
Adrian Mizzi

What's Changed

  • Addition of an optional default currency for consumers and corporates. If not provided, the identity default currency will be set to GBP. The default currency is used to calculate account usage limits.

    • POST /corporates/_/create
    • POST /corporates/{id}/get
    • POST /consumers/_/create
    • POST /consumers/{id}/get
    • POST /consumers/{id}/update
  • Re-introduction of email and mobile number as optional parameters when creating a consumer.

    • POST /consumers/_/create

Version 2.4.4

· 2 min read
Adrian Mizzi

What's Changed

  • Changes to Consumer APIs - email address and mobile number are only updated after verification is successful. This ensures that a validated email address (or mobile number) is not replaced with an invalid one.

    • Removal of email address and mobile number parameters from /consumers/_/create
    • Removal of email address and mobile number parameters from /consumers/{id}/update
    • Email and mobile number parameters are now optional in response of /consumers/{id}/get
  • Changes to Consumer APIs - name and surname cannot be updated if the Consumer Identity is already verified.

    • New error code CONSUMER_VERIFIED with /consumers/{id}/update