Skip to main content

48 posts tagged with "Multi-v2"

View All Tags

Version 2.10.2

· 9 min read
Adrian Mizzi

What's Changed

  • Changes to invite corporate user and consume invite

    • When creating a new corporate user, the invite email is not sent automatically. This must now be triggered separately.
      • POST /corporates/{id}/users/_/create
    • A new API
      • POST /corporates/{id}/invites/{invite_id}/send
    • When inviting a corporate user, this new consume invite operation now returns the auth token for the user to avoid having to login again
      • POST /auth/invites/{invite_id}/consume
  • Addition of new error codes as detailed below

  • Minor changes to responses as detailed below


Version 2.10.0

· One min read
Adrian Mizzi

What's Changed

  • Removal of owner field when creating a managed account or managed card. The instrument is always created for the user logged in.

    • POST /managedcards//create
    • POST /managedaccounts//create
  • New error code INSTRUMENT_DESTROYED returned when attempting to freeze/unfreeze a deleted card

    • POST /managed_cards/{id}/unfreeze
    • POST /managed_cards/{id}/freeze

Version 2.9.4

· 9 min read
Adrian Mizzi

What's Changed

  • Replacement of field companyRegistrationDate with incorporatedOn in

    • POST /corporates/_/create
    • POST /corporates/{id}/get
    • POST /corporates/{id}/update
  • Update in error codes for kyc/start. KYC_UNAVAILABLE to replace KYC_ALREADY_APPROVED and KYC_PENDING_REVIEW

  • Addition of new fields for Consumer

    • Occupation
    • Source of Funds
  • Addition of new fields for Managed Card

    • Billing Address (for AVS verification)

Version 2.9.0

· 6 min read
Adrian Mizzi

What's Changed

  • We have made changes in an earlier release to remove the username for Consumers and Corporates, and to use the email address instead. These fields are now marked as deprecated in the API:

    • POST /corporates/{id}/users/{user_id}/get
    • POST /corporates/{id}/users/{user_id}/update
    • POST /corporates/{id}/users/_/create
    • POST /corporates/{id}/users/get
    • POST /corporates/_/create
    • POST /consumers/_/create
  • Removal of deprecated field companyRegistrationTimestamp from Corporate Identity, and changing of other fields to optional (companyBusinessAddress, companyRegistrationAddress,companyRegistrationDate, rootTitle)

    • POST /corporates/{id}/get
    • POST /corporates/{id}/update
    • POST /corporates/_/create
  • Support for multi-tiered cardholder fees with the introduction of a feeGroup for Consumer and Corporate Identities

    • POST /corporates/{id}/get
    • POST /corporates/{id}/update
    • POST /corporates/_/create
    • POST /consumers/{id}/get
    • POST /consumers/{id}/update
    • POST /consumers/_/create
  • We now need to collect date of birth and address details for Consumer Identities. These details must be provided before starting KYC process. In an upcoming release, it will not be possible to start KYC if these details are not included.

    • POST /consumers/{id}/get
    • POST /consumers/{id}/update
    • POST /consumers/_/create

Version 2.8.5

· 3 min read
Adrian Mizzi

What's Changed

  • Introduced a new limit for sending mobile verification codes. This is now limited to 5 attempts, at least 1 minute apart. New error codes are returned FREQUENCY_EXCEEDED and RETRIES_EXCEEDED.

    • POST /corporates/{id}/users/mobile/send_verification_code
    • POST /consumers/{id}/mobile/send_verification_code
  • Introduce a new KYC and KYB status PENDING_REVIEW in responses for:

    • POST /consumers/{id}/get
    • POST /consumers/{id}/update
    • POST /consumers/_/create
  • Introduced new error codes KYB_PENDING_REVIEW and KYC_PENDING_REVIEW if a new kyb/kyc start is attempted while a Corporate/Consumer identity is under review.

    • POST /corporates/{id}/kyb/start
    • POST /consumers/{id}/kyc/start