Skip to main content

Multi API v3.0.4

· One min read
Maria Stellini

New errors codes when consuming a user invite

Authorised users can be onboarded using an invitation process. To accept an invite, the user needs to set a valid password that will be used to login. If the provided password is invalid, the API will return a 409 - Conflict with error codes:

  • PASSWORD_ALREADY_USED
  • PASSWORD_TOO_SHORT
  • PASSWORD_TOO_LONG
  • PASSWORD_TOO_SIMPLE
  • PASSWORD_KEY_ALREADY_IN_USE
  • PASSWORD_ALREADY_CREATED

Affected APIs:

  • POST /multi/users/\{user_id\}/invite/consume

New error code when transferring or sending funds

The transfersTransfer A transaction that moves funds between instruments managed by Weavr. The source and destination instruments of a transfer transaction must be owned by the same identity. Transfers can be scheduled for future execution and can be performed in bulk operations. and sendsSend A transaction type that allows sending funds to another identity's instrument or to a beneficiary. Send transactions may require Strong Customer Authentication depending on the destination and whether it's a trusted beneficiary. API will return a 409 - Conflict error with error code SOURCE_AND_DESTINATION_MUST_BE_DIFFERENT if the specified source and destination instruments are the same.

Affected APIs:

  • POST /multi/transfers
  • POST /multi/sends