Chapter 6 – Helpcenter

What is the Helpcenter?

The Helpcenter is the self-service help for your customers. Here they find answers to typical questions, step-by-step guides and explanatory articles on all the features you make available to them — right in the browser, without having to message you.

For you as a partner that means: fewer recurring support requests. For your customers: fast answers, around the clock.

🕒

Available 24/7Customers find an answer at night or on the weekend too — without waiting for you.

🔓

No login neededThe Helpcenter is public. Customers can open it directly, or you send them a link to a specific article.

🔄

Always up to dateArticles are maintained centrally — you don't have to document or update anything yourself.

Straight to the Helpcenter

Pick the language and send your customers the link, or take a look yourself: helpcenter.luxaiaas.com.

Helpcenter – home page with search field and topic categories
Helpcenter – home page with search field and topic categories

What your customers can do there

🔍

Search

Search for a keyword in the search field — the Helpcenter shows matching articles right away.

📂

Browse categories

Go through the topic areas when the right keyword doesn't come to mind.

📖

Read guides

Step-by-step articles with screenshots for all features.

Which topics customers find in the Helpcenter

The following topic areas are currently documented in the Helpcenter. The content is aimed directly at your customers — they can read up on things themselves, without you having to explain every step.

Topic 01

How do I set up an agent?

🚀

Step-by-step guide: how the customer sets up their first AI agent — from login to the active agent.

DE EN
Topic 02

Data Protection, GDPR & AI Act

🛡️

What the customer has to keep in mind when handling personal data — GDPR and the EU AI Act, explained in plain language.

DE EN
Topic 03

Basic Settings of the AI Agent

⚙️

Basic configuration of the agent: setting persona, language, voice and behaviour correctly.

DE EN
Topic 04

Settings: Prompt & Knowledge Base

📚

How the customer phrases the prompt and maintains their knowledge base, so that the agent answers reliably and in the right tone.

DE EN
Topic 05

Interfaces & Automation

🔗

How the customer connects external tools and builds simple automation workflows.

DE EN
💡 Tip for you as a partner

If a customer asks you a question that already has a Helpcenter article: just send them the link. That saves you time and the customer has the explanation in writing straight away — they can read it again later.

⚠️ Important

If a customer doesn't find an answer in the Helpcenter and contacts you — and you don't know either: don't guess. Contact support (contact details at the end of the handbook). Wrong information is harder to take back than a "Let me quickly check".

Chapter 7 – Interfaces

An interface (also called an API connection) links a bot to an external system – for example to a CRM, a shop, an inventory management system or a book­ing system. That way your bot can not only talk, but also act: retrieve data, create entries or book appointments.

At YOUNEA these connections are custom-built: a customer wants to connect their bot to a specific system, and we develop exactly the right interface for it – and make it available to the bot as functions (tools).

💡 Where to find what?

This chapter describes the process of a connection – from your point of view as a partner. You will find the technical API reference (keys, endpoints) in Chapter 2, and the prices of the interfaces in the catalogue in Chapter 4.

What is an interface?

Think of the bot as an employee. Without an interface, all it can do is provide information. With an interface it gets access to a tool – and can carry out real tasks with it.

Technically, an interface is a connection to the API (the “socket”) of an external system. We build this connection and attach it to the bot as a function. After that it appears with the bot in the list of Available Tools – just like the standard tools send_email or my-calendar_book_appointment (see Chapter 3 – Agent Functions).

Why do I need an interface?

Whenever the bot should do or know something outside the YOUNEA platform. Typical examples:

SystemWhat the bot can do with it
CRM (e.g. HubSpot, Salesforce)Create contacts, capture leads, look up customer data.
Shop / ERP (e.g. Shopify, inventory management)Query order and delivery status, check availability, create orders.
Calendar / booking (e.g. MyCalendar)Query free slots, book, reschedule or cancel appointments.
Own / custom REST APIAccess to the customer's in-house systems with their own API.

Master interface or bot interface?

There are two variants of a connection. Which one fits depends on how many bots are meant to use the system:

VariantConnectionWhen does it make sense?
Master interfaceOne central connection for several bots (1:n)When several bots are meant to use the same system. Higher one-off setup, but as a rule every additional bot is free.
Bot interfaceA 1:1 connection between one bot and the systemWhen only a single bot needs the system.

The specific prices (e.g. WhatsApp connection or custom interface billed by project days) are listed in the catalogue in Chapter 4.

How an interface project works

A connection can be commissioned in two ways: via the Younea Shop (“Custom Interface”, billed by project days – usually 1–3 days) or in direct contact with the partner or sales team for larger projects. After that it runs in these steps:

  1. Clarify the requirements. The customer describes which system the bot is to be connected to and what it has to be able to do there.
  2. Collect the documents. The customer provides everything needed for development (see next section).
  3. Development. We build the interface and make it available to the bot as function(s).
  4. Testing. Using the sample data, we check whether everything works as planned.
  5. Go-live. The finished functions are activated for the bot under Available Tools – the bot can use them right away.
"Available Tools" list in the bot configuration: activated standard tools such as my-calendar_book_appointment, send_email and current_time, below them the custom-built functions Bowling_HealthCheck, Bowling_AvailableSlots and Bowling_CreateBooking
Available Tools – the custom-built functions (here Bowling_…) appear next to the standard tools after go-live.

What does the customer have to provide?

So that we can develop quickly and without nasty surprises, we need four things from the customer before the start:

⚠️ Important – treat credentials like a password

Access data and API keys are secret. They never belong in the public front end, in shared documents or in public repositories. Only transmit them via a secure channel and, wherever possible, issue a separate key per application with only the necessary rights.

How does the bot use the finished interface?

After go-live, the connection shows up with the bot as a tool – in exactly the same list as the standard functions. The bot then decides on its own, based on the conversation, when to call the function (e.g. “look up order status” as soon as the customer asks about their delivery).

How you control in the system prompt when a function should be used is described in Chapter 3 – Agent Functions.

Common pitfalls

From experience – these three things delay a project most often:

⚠️ Outdated or faulty API documentation

If the documentation is wrong or incomplete, the connection cannot be planned properly – and unexpected errors keep coming up during development. Please ask the customer to provide up-to-date and complete documentation in advance.

⚠️ Changes to the workflow in the middle of development

If the customer changes what the bot should be able to do during implementation, everything has to be re-planned – and that costs extra time. The workflow should be as final as possible before the start.

⚠️ The external API changes

If the target API changes during (or after) the connection, the interface has to be adapted. Urge the customer to report such changes early on.

What about later changes?

If something changes after go-live in the external API or in the desired process, the interface usually has to be adapted. How this is handled in each individual case must be clarified individually.

💡 Tip

Keep the API documentation and access details up to date after go-live as well. That makes later adjustments considerably easier – and saves unnecessary troubleshooting.

Done

You now know what an interface is, when you need one, how a connection project runs, what the customer has to supply for it and which pitfalls you should avoid.

Chapter 8 – Legal & Security

⚠️ Important — no legal advice

The information in this chapter is general guidance for you as a partner, not legal advice and no substitute for it. Laws change, and every individual case is different. For specific legal questions — e.g. about GDPR, Terms and Conditions (AGB), the legal notice (Impressum), liability or a cease-and-desist warning — please contact a lawyer.

What does GDPR mean for me?

GDPR is the data protection law in Europe. It says: you must handle your customers' data with care.

In concrete terms this means:

⚠️ Important

Violations can result in fines of up to €20,000. When in doubt, better ask one time too many before you pass on or store data.

Do I need a legal notice (Impressum)?

Yes. A legal notice (Impressum) is required by law for commercial websites in Germany (provider identification). It ensures that everyone can see who is behind the website. A missing or incomplete legal notice is one of the most common reasons for cease-and-desist warnings of all.

What usually belongs in the legal notice:

The legal notice belongs on a separate page (e.g. /impressum) and must be reachable from every page with no more than two clicks — ideally linked clearly visibly in the footer.

What has to go into the privacy policy?

The privacy policy is mandatory under the GDPR as soon as you process personal data — and you practically always do (contact form, cookies, shop, chatbot, statistics). It transparently explains to your visitors which data you collect, what for and for how long.

What a privacy policy typically covers:

It, too, belongs on a separate page (e.g. /datenschutz) and should be linked in the footer on every page.

💡 Tip

The legal notice and privacy policy are not a copy-and-paste job — just like the Terms and Conditions. It is best to use a generator with an update service (e.g. eRecht24, IT-Recht-Kanzlei) or have them drawn up by a lawyer. You can fill these pages with your own details yourself in your website via the Divi Page Builder (see "Final Steps Before Going Live").

What are Terms and Conditions (AGB) and do I need them?

AGB stands for Allgemeine Geschäftsbedingungen (general terms and conditions). These are the "ground rules" that apply between you and your customers as soon as they buy something in your shop or accept an offer from you. As soon as you sell something commercially — including digital products or services — Terms and Conditions are practically indispensable.

Why are Terms and Conditions so important?

Good Terms and Conditions create legal certainty — for you and for your customers. They ensure that in the event of a dispute it is clear what was agreed, and they protect you from expensive surprises:

What your Terms and Conditions typically govern:

Where do the Terms and Conditions belong?

  1. As a separate page on your website (e.g. /agb).
  2. Linked in the footer — clearly visible on every page.
  3. In the ordering process before the purchase — with a checkbox for confirmation.
Example page: legal notice (Impressum)
Example: legal notice (Impressum) as a separate page
Example page: privacy policy
Example: privacy policy as a separate page
Example page: Terms and Conditions (AGB, Allgemeine Geschäftsbedingungen)
Example: Terms and Conditions (AGB) as a separate page

Where do I get suitable Terms and Conditions?

Terms and Conditions are not a copy-and-paste job. Wrong or third-party Terms and Conditions can end up more expensive than having none at all. Two safe routes:

⚠️ Important

Never copy Terms and Conditions from other websites — that is a copyright infringement and can lead to a cease-and-desist warning. Besides, third-party Terms and Conditions rarely fit your specific offering. If you are unsure, check with us or a lawyer beforehand.

What do I do in an emergency?

Emergency means: the website is gone, hacked or showing content that isn't yours.

Step 1: Stay calm

Even if it feels bad: it can almost always be solved. We have backups.

Step 2: Don't repair it yourself

Don't click randomly through the WordPress menu. That can delete traces of the attacker which we need for the analysis.

Step 3: Report it immediately

You can reach us via our emergency hotline: +49 176 20981651. In an emergency you can also write to this number directly via WhatsApp (wa.me/4917620981651).

Technical emergencies (server outages, learning portals, bot access):

For all other urgent matters:

Whichever route you use — please always include:

  1. A screenshot, if possible.
  2. The exact time when you noticed the error.

Step 4: Don't communicate anything externally

Don't write any social media posts about it until we know about it. That can have legal consequences.

💡 Tip

Before you make a big change (e.g. testing a new plugin, switching the design): ask us. We'll make an extra backup for you beforehand. That way nothing can get lost.

Done

You now know the most important rules on data protection, emergencies and backups. That's a relief.

Final Steps Before Going Live

Setting Up Payment

First, open your WordPress site. Then go to the Payments (in German: "Zahlungen") section and click Set up (in German: "Einrichten") to configure the payment details with Stripe.

Alternatively, you can go straight to the correct settings page by simply appending the following part to your website address:

/wp-admin/admin.php?page=wc-settings&tab=checkout&from=PAYMENTS_MENU_ITEM

Example:
https://ihre-domain.de/wp-admin/admin.php?page=wc-settings&tab=checkout&from=PAYMENTS_MENU_ITEM

This takes you directly to the payment settings.

Legal notice (Impressum), Data Processing Agreement, Terms and Conditions (AGB) & Privacy policy

It is best if you fill these pages with your own data and texts. With the Divi Page Builder, anyone can handle this easily. Just open the relevant page to do so. Divi can only be activated by an administrator.

Important Information About the Website

WooCommerce

1. Orders

The Orders (in German: "Bestellungen") section shows the complete history of every order placed.

2. Customers

The Customers (in German: "Kunden") section lets you see who has purchased the bot.

3. Coupons

In the Coupons (in German: "Gutscheine") section, you can create discount codes to offer your customers price advantages.

4. Reports

The Reports (in German: "Berichte") section shows the total revenue, optionally filtered by individual days.

5. Settings

The Settings (in German: "Einstellungen") section offers various configuration options, including those for payments.

⚠️ Important

To make sure payouts work correctly, you should enter your bank details.

General Information on AI Management

Dashboard

Under Dashboard you get an overview of all existing bots that have been bought and created.

Credit

In this section you can top up credit. Besides the manual top-up, there is also an automatic option: as soon as the credit falls below a minimum amount you define yourself, it is topped up again automatically. You can also set the amount that should be added during the automatic top-up.

Instruction Generator

The Instruction Generator uses AI to help you create optimal prompts – tailored to the respective use case.

Knowledge Base Assistant

The assistant automatically guides you through the process of creating plain text documents from documents containing text, images or tables. It does not create the documents for you; instead, it shows you step by step how to prepare them yourself – so your content can be used optimally for the knowledge transfer into the Knowledge Base.

My Account

Clicking on "My Account" (in German: "Mein Konto") takes you back to the account overview, where all relevant information is shown at a glance.

Deletion and Retention Periods

A value of -1 means that chats are not deleted. If a positive value is entered (e.g. 3), the chats are stored for 3 days and then deleted automatically.

Configuration

This section contains the LetzChat bot. Here you can create and optimise your own chatbots.

The Welcome message is shown before the conversation starts and allows for an individually defined greeting.

In the prompt you can define Instructions and rules of behaviour for the bot.

The setting "GDPR chat log retention (days)" determines how long chat logs are stored. A value of "-1" means that the logs are not deleted automatically. A value of "2" means that the logs are removed automatically after 2 days.

Under Available Tools you can add various functions to the bot. One example is "send_email": this function makes it possible to automatically send appointments to a previously defined email address after the conversation. Here is the link to the shop, where all available functions are listed and can be purchased: https://www.younea.ai/kundenshop

The language model forms the central core of the AI and determines its performance. Here you can define how complex and powerful the AI should be.

Display Settings

Under Display settings (in German: "Anzeigeeinstellungen") you can, among other things, define the language the bot should communicate in, for example English. You can also activate additional languages. With the "Additional_Languages" function, the bot is able to write in several languages. If a customer speaks French, for example, the bot automatically answers in French as well.

Under Bot Name you define the desired name for the bot.

In the "Configure the display of the bot here" area, you can add and activate the additionally purchased languages.

Under Color theme you can individually adjust the colour design of the bot chat.

(Add-on) Voice Agent

This section contains the voice bot

The Welcome message is shown before the conversation starts and allows for an individually defined greeting. In the prompt you can define Instructions and rules of behaviour for the bot.

Under Available Tools you can add various functions to the bot: one example is "send_email": this function makes it possible to automatically send appointments to a previously defined email address after the conversation. Here is the link to the shop, where all available functions are listed and can be purchased: https://www.younea.ai/kundenshop

In the Voice Agent (in German: "Sprachagent") section, a selection of different voices is available for you to choose from. In addition, the following parameters can be configured:

With the "Concurrent calls" option, up to 30 calls can be processed in parallel.

Calendar

In the Calendar, customer appointments that were arranged during the conversation with the chatbot or the phone bot are entered automatically.

Creating an Invoice

With the "Invoice / Shipping" (in German: "Rechnung / Versand") plugin you can set the invoice template and the invoice layout.

Here you can then customise your invoice.

Duplicate Content

Because every partner initially receives a template site from us, it makes sense to replace the existing texts with your own. This is especially important for SEO (search engine optimization), so that your site ranks higher with the search engines – because if many sites have the same content, Google counts this as duplicate content. Your site would then not be shown on page 1 of a Google search, but on page 3, for example.

Creating Users

Here you can add new users.

Username and email address are mandatory. All other fields are optional. You can either set the password yourself or have it generated automatically.

Using the "Role" (in German: "Rolle") option, you can assign a role to the user. An administrator, for example, has access to the entire website.

Divi

If you click on "Enable Visual Builder", you can adjust the design of your page – for example texts, colours, images or layouts. The Visual Builder is very easy to use.

This is what the Visual Builder looks like. Here you can change texts directly or adjust colours in the design area. You can see the design options in the second image.

Topping Up Virtual Credit

You can top up the virtual credit for each individual user. To do so, go to the "Wallet" section and click on "Credit / Debit Funds".

In the "User Selection" area, click on "Include User" to add a user. Then select the "Credit" option and enter the amount to be credited to the user. Finally, save your entry.

Setting Up Multiple Languages for the Website

To add more languages, go to the Languages (in German: "Sprache") section.

Then fill in all the fields and add the language.

Once the language has been added, go to the Pages (in German: "Seiten") plugin.

For each page you will see a plus symbol per language. If you click on it, the Divi Page Builder opens. There you can either use an existing layout or create your own layout.

Needs Analysis

Would you like to connect an external system – for example a CRM, a ticketing system or a shop – to your bot? Then we need a few technical details in advance. There is a ready-made questionnaire for a pull API interface (read-only) – that is, a connection where we only read data from the source system and do not change anything.

💡 How to proceed

Download the questionnaire – as a PDF to print out or as a Word file (DOCX) to fill in directly on your computer. Complete it as fully as possible – ideally together with your IT team or the provider of the source system – and then send it back to us.

PDF Questionnaire as PDF To print out & fill in by hand Download DOCX Questionnaire as Word (DOCX) Fill in directly on your computer Download
⚠️ Please do not enter any secrets

Do not enter real passwords, API keys or tokens in the questionnaire. We will exchange access credentials later via a secure channel.

FAQ – Frequently Asked Questions

Here you will find answers to the most frequently asked questions – sorted by topic. Look here first before you contact us. If the topic is covered in detail in the handbook, a link below the answer takes you straight to the right place.

Setting up & customising your bot

1. How can I adjust the functions and settings of my bot?

Everything that controls the behaviour of your bot is in LuxAIaaS under "Configuration" (in German: "Konfiguration"): welcome message, instructions (the system prompt), GDPR retention, Available Tools (in German: "Verfügbare Werkzeuge"), display settings (in German: "Anzeigeeinstellungen") and the embedding (in German: "Einbindung"). To the right of it you see a live preview and can test every change immediately. Important: there is no auto-save – click "Save" (in German: "Speichern") at the bottom right after every change.

→ Chapter 2 – Configuration

2. How can I integrate a chatbot into my website?

In two steps: in LuxAIaaS you copy the website integration code under "Configuration → Embedding" (in German: "Konfiguration → Einbindung"). In WordPress you then hover over "Cookie Consent", click "Service" in the submenu, select the chatbot from the list, scroll down and paste the script there. Once saved, the chatbot automatically appears at the bottom right on every page of your website.

→ Chapter 1 – Embedding the chatbot via Cookie Consent

3. How do I include the functions (tools) in my prompt?

A tool has to appear twice: it must be activated under "Available Tools" (in German: "Verfügbare Werkzeuge"), and in the prompt you describe the trigger point – that is, when the bot should use it. Activating it is not enough on its own: without a description in the prompt, the bot does not know in which situation it may call the function. There is nothing to memorise: to the right of every function there is an (i) icon. Clicking it opens the info box, which repeats everything about that function – the matching prompt addition, an explanation and the parameters.

→ Chapter 3 – Agent Functions

4. How can I delete a bot?

In the Dashboard you find a menu with three dots to the right of the bot. Click on it and select "Delete bot" (in German: "Bot löschen"). Important: pausing a bot is not possible – deleting is the only option. As long as a bot exists it is billed, including while it is inactive. So if you no longer need it, you have to delete it.

→ Chapter 2 – Dashboard

5. Can the avatar of the chatbot be changed?

Yes. Just send us a short email – we will change the avatar for you. Not to be confused with the "Chat Avatar" add-on (the 3D-animated avatar with lip sync): that is a separate add-on and still in preparation.

→ Email to ai@younea.lu

6. Why does my chatbot answer incorrectly?

It is probably missing knowledge. Open LuxAIaaS, click on "Knowledge Base" (in German: "Wissensdatenbank") and add suitable content (e.g. your FAQ or product descriptions). After a few minutes the answer should get better.

→ Chapter 2 – Knowledge Base

Appointments & MyCalendar

7. How can the chatbot retrieve bookings using the email address of the customer?

That is what the my-calendar_GetBookingUIDsByEmail function is for. It belongs to the MyCalendar functions, must be active under "Available Tools" (in German: "Verfügbare Werkzeuge") and must be listed in the prompt – then the bot can find the bookings of a customer via their email address. What exactly belongs in the prompt and which parameters the function expects is shown in the info box behind the (i) icon to the right of the function.

→ Chapter 3 – MyCalendar functions in the prompt

8. How many appointments can a customer book per day?

You define that yourself in MyCalendar. Open your event type and set under "Limits" how many bookings are possible per day.

→ Chapter 3 – Event Types

9. How can I adjust the lead time for bookings in the MyCalendar system?

The lead time defines how shortly before an appointment a booking is still allowed. If it is set to two hours, for example, no appointment can be booked within that time window. You can adjust this in the settings of the event type under "Limits".

→ Chapter 3 – Event Types

10. The calendar integration does not work – what is the reason?

In most cases the parameters in the prompt do not match MyCalendar. Username and event type (eventType) have to be spelled exactly as in MyCalendar – even a slightly different name prevents the booking.

→ Chapter 2 – Calendar setup

Email & summaries

11. How can I use the email function for a bot?

The send_email tool must be activated under "Available Tools" (in German: "Verfügbare Werkzeuge"). After that you define the trigger point in the prompt – that is, the situation in which the email should go out (e.g. "when the customer asks for a call back"). Without this trigger point the bot does not send any email. You will find the matching prompt addition and the parameters in the info box behind the (i) icon to the right of the function.

→ Chapter 2 – Available Tools

12. How do I activate the automatic conversation summary (mail-summary)?

There are two steps. First: mail-summary is a paid feature per bot (€39 per bot) and has to be enabled by us – you buy it in the Customer Shop and enter the recipient email and the bot ID in the order notes when ordering. Second: you also have to add the function to the prompt. Only then does the bot automatically send an email with a summary and the complete transcript after every conversation. If it is enabled but not mentioned in the prompt, nothing happens.

→ Chapter 4 – Catalogue: Agent Functions

13. Why do the email summaries not arrive?

There are three common causes for that. First: the mail-summary function has not been enabled for this bot yet – it has to be bought in the Customer Shop and activated by us. Second: it is enabled but not added to the prompt – then the bot never triggers the sending. Third: the recipient email or the bot ID was missing in the order notes when ordering, so the system does not know where the summary should go. Get in touch with us if all three are correct and still nothing arrives.

→ Chapter 4 – Catalogue: Agent Functions

Knowledge Base & prompts

14. How can I improve the structure of the Knowledge Base?

Work with clear headings and simple, short texts. The more cleanly a document is structured, the better the bot finds the right passage and the more precisely it answers.

→ Chapter 2 – Knowledge Base

15. Which requirements do the documents for the Knowledge Base have to meet?

The AI works best with plain text. Documents with images, tables or structured data should be converted into plain text beforehand – the Knowledge Base Assistant helps you with that.

→ Chapter 2 – Knowledge Base Assistant

16. How do I prepare documents and get to the right prompt?

There is an assistant for each of these. The Knowledge Base Assistant guides you through the preparation of your documents into plain text via chat. The Instruction Generator asks you a few questions (type of bot, environment, main purpose) and gives you a finished prompt at the end that you can use straight away.

→ Chapter 2 – Instruction Generator

17. How long does it take until the AI knows my new content?

Usually 5 to 15 minutes, with large files it can take a little longer. You can see the status in the Knowledge Base – as soon as it says "Ready" (in German: "Bereit") there, you can start testing.

→ Chapter 2 – Knowledge Base

Credit, costs & billing

18. How does the billing system work and which fees apply?

Billing runs via your credit. The running subscriptions (e.g. chat or voice subscription) and the usage fees of your bots are deducted from it. In the "Credit" (in German: "Guthaben") area you see every entry by category under "Recent transactions" (in German: "Letzte Transaktionen"), and in the "Costs" (in German: "Kosten") area the details per bot and period. The prices of the individual products and extensions are listed in the catalogue.

→ Chapter 4 – Catalogue & prices

19. How can I understand the licensing and the costs that come with it?

Every bot runs on a subscription that is renewed automatically. Important: the renewal is debited from the credit. If the credit is not sufficient, the subscription cannot be renewed and the bot becomes inactive. To prevent that, the customer should set up an automatic top-up with a threshold in the LuxAIaaS credit management – as soon as the credit falls below that value, it is topped up automatically. The credit management is meant for customers; as an administrator you top up in WordPress via "Wallet" instead.

→ Chapter 2 – Credit area

20. When is an agent billed by YOUNEA?

An agent is billed as long as it exists in your account – in both states: active and inactive. So an inactive bot still costs money. Only once you delete the bot does the billing stop. If you no longer need a bot, letting it go inactive is not enough – delete it.

→ Chapter 2 – Dashboard

21. Are virtual top-ups by admin users charged?

No. Virtual top-ups by admin users (via "Wallet" in WordPress) are not charged by YOUNEA. What matters, however, is this: bots created by admins must have credit available as well. Without credit the subscription cannot be renewed and the bot becomes inactive – that applies to admin bots exactly as it does to customer bots.

→ Chapter 1 – Wallet: top up credit

22. My bot is suddenly inactive – how do I activate it again?

In the vast majority of cases the credit is not sufficient to renew the subscription. Top up credit – after a few minutes the bot automatically becomes active again. As a customer you top up via the credit management, as an administrator in WordPress via "Wallet".

→ Chapter 1 – Wallet: top up credit

Integrations & interfaces

23. How can I implement integrations with other systems or APIs?

An interface connects your bot to an external system (e.g. CRM, shop or calendar) and is then made available to it as a function. We build these integrations for you – the process runs from clarifying the requirements through the documents and the development to testing and go-live. For that you need API documentation, the desired workflow, credentials and test data.

→ Chapter 7 – Interfaces

24. How can entries in the history of contacts be created via API?

That is generally no problem. For that you need an API key with the matching permissions; the requests then run via the Public API. For a permanent connection to your system, get in touch with us – we will implement that as an interface.

→ Chapter 2 – API keys

25. How can I set up a WhatsApp AI bot and which information is needed for it?

We set up the WhatsApp connection for you – just write to us about it. You should have ready: company details, credit card, Facebook profile and phone number; we will clarify further details with you directly.

→ Contact & Help

26. Do I have to enable anything in the META Ads Manager for the WhatsApp integration?

Yes. A META Ads Manager that has been set up on the customer side is a prerequisite for the WhatsApp connection. Without it the connection cannot be established.

→ Chapter 4 – Catalogue: WhatsApp

Account, users & access

27. Can I delete the account of a customer?

Technically it would work via WordPress – but we advise against it. Along with the account you lose the customer's complete history: orders, customer invoices and everything else. On top of that, all bots of that customer are deleted with it. So when in doubt, delete only the bot and leave the account in place.

→ Chapter 1 – Managing users

28. Does an employee have to get an administrator account?

Not necessarily. Anyone who only needs to work with the platform gets by with the "Customer" (in German: "Kunde") role – with it they see the platform and their own data, but have no access to WordPress. The "Administrator" role has access to everything, including other accounts, and should therefore be assigned sparingly.

→ Chapter 1 – Managing users

29. I have forgotten my password. What now?

On the login page, click the "Forgot password?" (in German: "Passwort vergessen?") link. You will receive an email with a new link. You can use it to set a new password.

→ Chapter 1 – Where do I log in?

30. How do I set up user assignment and the management of the customer portal?

It is best to go through that together. Get in touch with us and we will arrange an appointment for it.

→ Contact & Help

31. Where do I get access to the Onboarding Platform?

You receive access automatically by email once the contract is concluded. If you have not received any login details after a few days, contact support.

→ Chapter 5 – Onboarding Platform

32. Are the onboarding courses also available in other languages?

Yes. Every course is available in four languages: German, English, Spanish and French. You can switch the language directly in the course.

→ Chapter 5 – Onboarding Platform

Technical problems

33. Why do I not see any conversations in the chat history?

That is normal – it takes a short while until the conversations are displayed, usually about 5 minutes. If there is still nothing to see after considerably longer, get in touch with us.

→ Chapter 2 – Chat logs

34. The test call function has heavy background noise – what can I do?

In Firefox there is currently heavy background noise during the test call. Use Chrome, Opera or another browser for the test instead.

35. What do I do if my website is unreachable?

Wait 5 minutes and try again. Then restart your browser. If the site still does not work, get in touch with us. We will check the cause.

→ Contact & Help

36. Who do I turn to for technical problems?

To us! Send us an email or contact us via Teams. Phone and WhatsApp are intended exclusively for real emergencies.

→ Contact & Help

WordPress & shop

37. Can I cancel an order?

Yes, and you do it yourself: in WordPress go to WooCommerce → "Orders" (in German: "Bestellungen") and open the order in question. From there you can simply refund it – even if the customer has already paid.

→ Chapter 1 – WooCommerce: managing orders

38. How can I adjust the prices on the website?

In the WordPress menu on the left you will find the item "Products" (in German: "Produkte") – that is where all the products of your shop are. Open the product you want, adjust the price and save. The new price is live immediately after that.

→ Chapter 1 – Managing products

39. My emails do not arrive or end up in spam – what is the reason?

Then something is usually wrong with the email delivery. In WordPress, check under Post SMTP whether the sender name and sender email are stored and whether the SMTP credentials are correct. Always use a real address of your own domain as the sender – external addresses such as @gmail.com end up in spam considerably more often.

→ Chapter 1 – Setting up Post SMTP

Legal & Security

40. May I use images from the internet?

No, not without permission. That can cause legal problems. Only use your own images or images from sites such as Unsplash or Pexels. These are free of charge.

→ Chapter 8 – Legal & Security

41. My website has been hacked – what should I do?

Do not repair anything yourself and do not write any social media posts. Call us immediately via the emergency hotline. We will restore a backup and analyse the breach.

→ Chapter 8 – What do I do in an emergency?

42. Where do I find an alphabetical overview of all topics?

In the Appendix right at the end. There is a keyword index there with links to the right chapter.

→ Appendix – Index

Contact & Help

Stuck on a task? We're happy to help. So your request reaches the right person quickly, here are the most important channels:

💬

Preferred: Teams chatFor all normal requests, questions and advice. We usually reply within the working day.

✉️

EmailWhen you want to send attachments or have a case documented.

🚨

Emergencies only: phone & WhatsAppFor urgent problems such as a hacked website, an offline platform or data loss — available 24 hours.

ContactYOUNEA
Emailai@younea.lu
Emergency phone+49 176 20981651 (emergencies only)
WhatsApp+49 176 20981651 (emergencies only)
AvailabilityMon – Fri, 9:00 – 17:00 (Teams & email)
Emergency hotline: 24 hours a day (phone & WhatsApp)
Websitewww.younea.ai
💡 Tip

Before you get in touch: take a quick look at the FAQ section. Many questions are already answered there.

⚠️ Important

Phone and WhatsApp are exclusively for real emergencies — such as a hacked website, an offline platform or data loss. For everything else, please use Teams chat or email so we can keep the emergency line free for urgent cases.

We wish you every success!

— Your YOUNEA team —

Appendix

Where do I find what? (Index)

Sorted alphabetically. Click on the chapter to jump straight there.

A

B

C

D

E

F

G

H

I

K

L

M

O

P

S

T

U

W

Would you like to print the handbook?

Use your browser's print function:

  1. Press the Ctrl and P keys at the same time (on a Mac: and P).
  2. Choose "Save as PDF" if you want to keep the handbook digitally.
  3. Or select your printer for a paper version.