|
|
import 'package:get/get.dart';
|
|
|
|
|
|
import '../views/model/FAQS.dart';
|
|
|
|
|
|
class FaqsController extends GetxController {
|
|
|
late FaqsModel faqsModel;
|
|
|
final searchText = ''.obs;
|
|
|
var filteredListSendingMoney = <SendingMoney>[].obs;
|
|
|
|
|
|
@override
|
|
|
onInit() {
|
|
|
super.onInit();
|
|
|
loadData();
|
|
|
debounce(searchText, (_) => filterListSendingMoney(), time: const Duration(milliseconds: 300));
|
|
|
}
|
|
|
|
|
|
loadData() {
|
|
|
faqsModel = FaqsModel.fromMap(faqsJson);
|
|
|
filteredListSendingMoney.value = faqsModel.sendingMoney;
|
|
|
update();
|
|
|
}
|
|
|
|
|
|
void filterListSendingMoney() {
|
|
|
if (searchText.isEmpty) {
|
|
|
filteredListSendingMoney.value = faqsModel.sendingMoney;
|
|
|
} else {
|
|
|
filteredListSendingMoney.value = faqsModel.sendingMoney.where((item) => item.title.toLowerCase().contains(searchText.value.toLowerCase())).toList();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
List<SendingMoney> get filteredSendingMoney {
|
|
|
if (searchText.value.isEmpty) {
|
|
|
return faqsModel.sendingMoney;
|
|
|
} else {
|
|
|
return faqsModel.sendingMoney.where((sendingMoney) => sendingMoney.title.toLowerCase().contains(searchText.value.toLowerCase()) || sendingMoney.description.toLowerCase().contains(searchText.value.toLowerCase()) || sendingMoney.questions.any((question) => question.title.toLowerCase().contains(searchText.value.toLowerCase()) || question.subQuestions.any((subQuestion) => subQuestion.title.toLowerCase().contains(searchText.value.toLowerCase()) || subQuestion.questionDetails.any((questionDetail) => questionDetail.question.toLowerCase().contains(searchText.value.toLowerCase()) || questionDetail.answer.toLowerCase().contains(searchText.value.toLowerCase()))))).toList();
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/// Corrected JSON structure
|
|
|
var faqsJson = {
|
|
|
"Sending_money": [
|
|
|
{
|
|
|
"title": "Sending money",
|
|
|
"description": "Setting up, paying for, editing, and cancelling transfers.",
|
|
|
"ImageProvider": "assets/uco/icons/ic_snding_money.svg",
|
|
|
"questions": [
|
|
|
{
|
|
|
"title": "Sending money basics",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "How long does a transfer take?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Can I sendexact amounts?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "How do you notify meabout a transfer?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "How do I download a transfer receipt?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Do I need to pay any tax on transfers?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "How can I repeat a transfer?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Can I send from someone else's bank account?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Where is my money?",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Mistakes and editing your transfer",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Cancellations and refunds",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "We support these countries and currencies",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Ways to pay",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Verifying your transfer",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Sending money from your Wise account",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Sending large transfers",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Managing your recipients",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Rates and fees",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Managing your account",
|
|
|
"description": "Setting up your account and getting verified.",
|
|
|
"ImageProvider": "assets/uco/icons/ic_manage_account.svg",
|
|
|
"questions": [
|
|
|
{
|
|
|
"title": "Sending money basics",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "How long does a transfer take?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Where is my money?",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Mistakes and editing your transfer",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Cancellations and refunds",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "We support these countries and currencies",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Ways to pay",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Verifying your transfer",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Sending money from your Wise account",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Sending large transfers",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Managing your recipients",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Rates and fees",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Holding money",
|
|
|
"description": "Holding balances, setting up Direct Debits, and using \nInterest & Stocks.",
|
|
|
"ImageProvider": "assets/uco/icons/ic_holding_money.svg",
|
|
|
"questions": [
|
|
|
{
|
|
|
"title": "Sending money basics",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "How long does a transfer take?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Where is my money?",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Mistakes and editing your transfer",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Cancellations and refunds",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "We support these countries and currencies",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Ways to pay",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Verifying your transfer",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Sending money from your Wise account",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Sending large transfers",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Managing your recipients",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Rates and fees",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Wise card",
|
|
|
"description": "Ordering, activating, spending, and troubleshooting.",
|
|
|
"ImageProvider": "assets/uco/icons/ic_wise_card.svg",
|
|
|
"questions": [
|
|
|
{
|
|
|
"title": "Sending money basics",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "How long does a transfer take?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Where is my money?",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Mistakes and editing your transfer",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Cancellations and refunds",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "We support these countries and currencies",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Ways to pay",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Verifying your transfer",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Sending money from your Wise account",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Sending large transfers",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Managing your recipients",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Rates and fees",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Receiving money",
|
|
|
"description": "Using your account details to receive money.",
|
|
|
"ImageProvider": "assets/uco/icons/ic_receiving_money.svg",
|
|
|
"questions": [
|
|
|
{
|
|
|
"title": "Sending money basics",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{
|
|
|
"question": "How to send money with UCO",
|
|
|
"answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password. \n\nWe’ll also need to verify you before you are able to send money. Check what information we need and how long verification takes here.",
|
|
|
"multiple_options": [
|
|
|
{
|
|
|
"option_title": "1. Go to 'Send'",
|
|
|
"option_answer": "From the Home screen, select Send.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "2. Choose where you want to send from",
|
|
|
"option_answer": "You can fund your transfer from either an account outside UCO or use available money on your UCO balance.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "3. Enter how much you’d like to transfer",
|
|
|
"option_answer": "Select either the amount you’d like to send,or exactly how much you’d like your recipient to get, and chose the currency. \n\nIf you choose how much you send, the fees are added to that amount. If you choose how much your recipient gets, we'll show you how much you have to send including the fees. \n\nYou can choose to schedule this transfer by clicking the calendar icon next to Continue.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "4. Let us know who you’re sending money to",
|
|
|
"option_answer": "You can search for an existing recipient from your list by typing the name, Wisetag, email or phone, or scrolling down the list. \n\nIf it's not an existing recipient, you can add one manually by clicking Add a recipient.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "Add a new recipient",
|
|
|
"option_answer": "Select if you're sending to yourself, someone else, or a business. \n\nIf you have their bank details, check the box and add them in — we’ll send money to that account. \n\nIf you don’t have their bank details, just enter their email address.",
|
|
|
"built_point_1": "If they have an account with UCO, we’ll find the account they want to receive money into.",
|
|
|
"built_point_2": "If they don’t have an account with UCO, we’ll send them an email asking for their bank details.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "5. Review the details of your transfer",
|
|
|
"option_answer": "Make sure everything looks right. You can add a reference for your recipient if you’d like.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "6. Choose how to pay",
|
|
|
"option_answer": "The confirmation lets you check the details — your money isn't sent at this point. \n\nThere are multiple ways you can pay for your transfer. We’ll let you know the fees for each option, and how long it should take for the money to arrive. \n\nIt’s often cheapest to pay from your bank account. This means you’ll have to go to your online banking or your branch and send the money to UCO from there.",
|
|
|
},
|
|
|
{
|
|
|
"option_title": "7. That’s it!",
|
|
|
"option_answer": "After we’ve received your money, we’ll confirm the transfer via email or in the app. And we’ll also let you and your recipient know when the money’s on its way. \n\nYour payments will appear under Transactions on the home screen, and you can even change the category from a drop-down list right under the amount, to keep your payments organised.",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "How long does a transfer take?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Where is my money?",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Mistakes and editing your transfer",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Cancellations and refunds",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "We support these countries and currencies",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Ways to pay",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Verifying your transfer",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Sending money from your Wise account",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Sending large transfers",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Managing your recipients",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
"title": "Rates and fees",
|
|
|
"sub_questions": [
|
|
|
{
|
|
|
"title": "How do I send money with UCO?",
|
|
|
"questions_details": [
|
|
|
{"question": "How do I send money with UCO?", "answer": "To send money with Wise, you’ll first need to sign up. We’ll ask for your email address, and you’ll create a password."}
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
]
|
|
|
};
|