Multi API v3.63.1
· 2 min read
Mobile phone numbers entered into the MultiMulti Weavr Multi is an embedded finance solution that allows you to integrate financial services into your own application, providing a seamless experience for your customers. It enables you to offer managed accounts, managed cards, and transactions without requiring financial expertise. API must follow international standards
Mobile phone numbers entered into the MultiMulti Weavr Multi is an embedded finance solution that allows you to integrate financial services into your own application, providing a seamless experience for your customers. It enables you to offer managed accounts, managed cards, and transactions without requiring financial expertise. API must now follow the international standard with a maximum combined length of 15 characters. This includes:
- The country code
- The mobile number
- The “+” symbol (if used in the country code)
API details
mobile object (used in the following endpoints):
- POST and PATCH /corporates
- POST and PATCH /consumers
- POST and PATCH /users
Before:
countryCode: required, string [1 .. 6], regex:^\+[0-9]+$number: required, string [1 .. 15], regex:^[0-9]{1,15}$
After:
countryCode: required, string [1 .. 4], regex:^\+[0-9]+$number: required, string [1 .. 12], regex:^[0-9]{1,12}$Additional validation: total length ofcountryCode+numbermust not exceed 15 characters.
cardholderMobileNumber (deprecated field in POST and PATCH /managed_cards):
- Before: [5 .. 20] characters, regex:
^\+[0-9]+$ - After: [5 .. 15] characters, regex:
^\+[0-9]+$