
Getting Started with Genuka
Follow this step-by-step guide to create your developer account, register your first application.Simple process for applications.
When you create your application on Genuka, it has two modes (production and staging)- Staging mode is for testing, and any changes you make to the dashboard while it’s still in staging will have no effect on the production version. Keep this in mind before going live.
- Production mode represents a much more significant phase in your application’s lifecycle on the Genuka Store. When you move to production, you must submit your application for review, and our developers will perform the necessary checks and then publish your application if all steps are satisfactory.
It should be noted that the keys are not the same for production and staging, so this must be taken into account.
1
Create Your Developer Account
Create your Genuka developer account and log in to your dashboard.
👉 Register hereOnce logged in, you can access your developer dashboard to manage your applications and test integrations.
👉 Register hereOnce logged in, you can access your developer dashboard to manage your applications and test integrations.
2
Create Your Application
From your developer dashboard, go to the Applications section or visit 👉 Create an App.When creating the application, you will be asked for some additional information. Note that application creation on Genuka only occurs once a deployment is available for testing.
🎉 Once created, you’ll receive your:
| Element | Explanation | Example |
|---|---|---|
| name | The public name of the application displayed to users. | ”Order Sync App” |
| description | A short description explaining what the app does. | ”Automatically sync your orders to your CRM.” |
| price | The price of the application (if paid). | 10 |
| support_email | Email address where users can reach your support team. | ”[email protected]” |
| support_url | URL of your support/help center. | ”https://app.com/support” |
| redirect_url | URL where users are redirected after authentication (OAuth). | “https://app.com/auth/callback” |
| callback_url | API endpoint that receives authorization code/token from Genuka. | ”https://api.app.com/genuka/callback” |
| webhook_url | URL to receive event notifications (orders, products, payments…). | “https://api.app.com/webhooks/genuka” |
| terms_of_service_url | Link to your Terms of Service. | ”https://app.com/terms” |
| privacy_policy_url | Link to your Privacy Policy. | ”https://app.com/privacy” |
| medias | List of screenshots, images, or logos representing the application. | ["https://cdn.app.com/screen1.png"] |
| scopes | Permissions the app requires to access Genuka data. | ["orders.read", "products.write"] |
| plans | Pricing plans available for the application. | { } |
| version | Current version of the application. | ”1.0.0” |
- Public Key — used for client-side operations
- Secret Key — used for secure server-side authentication
3
Choose Your Integration Method
You can integrate Genuka in two ways, depending on your stack:Initialize the SDK in your app:
- Using the JavaScript SDK (Recommended for React, Angular, Vue, etc.)
💡
companyId represents the ID of the company whose data you want to access. No worries — this ID is automatically included with every request, so there’s nothing extra you need to do. And here’s some good news — your
developer account automatically creates a default company, making it easy to start testing your API calls right away.- Using the REST API directly
fetch, axios, or cURL:4
⚠️ Important:
When your app is installed by a client, Genuka will automatically provide it with a hmac specific to that client.
This hmac can be use to optain the unique access token who is used to authenticate all API calls made on behalf of that client.👉 For more details about how tokens are generated and managed, see Authentication.👉 Choose the method that best fits your application stack.
When your app is installed by a client, Genuka will automatically provide it with a hmac specific to that client.
This hmac can be use to optain the unique access token who is used to authenticate all API calls made on behalf of that client.👉 For more details about how tokens are generated and managed, see Authentication.👉 Choose the method that best fits your application stack.
5
Set Up Webhooks
To receive real-time notifications (e.g., when an order is created, updated, or completed), configure your webhook endpoint in the dashboard.
👉 Webhook Setup Guide
👉 Webhook Setup Guide
6
Submit for Review 🧩
After testing your app, submit it for review so the Genuka team can verify its compliance and functionality.
Our review process ensures that every app meets our security, performance, and integration standards.
If any issues are found, you’ll receive a detailed notification explaining what needs to be fixed before approval.
👉 Submit Your App
Our review process ensures that every app meets our security, performance, and integration standards.
If any issues are found, you’ll receive a detailed notification explaining what needs to be fixed before approval.
👉 Submit Your App
7
Go Live 🚀
Once your app is tested and stable, switch to production mode from your dashboard:
If the evaluation is positive (approved), it becomes immediately available on the Genuka Store for clients to install and use.
- Deploy your application on your server.
- Open your app in the Genuka dashboard.
- Click the “Production mode” button.
If the evaluation is positive (approved), it becomes immediately available on the Genuka Store for clients to install and use.
