> ## Documentation Index
> Fetch the complete documentation index at: https://docs.oxanaut.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Import a Paymenter SQL dump (admin)

> Parses a mysqldump of a Paymenter instance and maps users, offers, coupons, currencies, tax rates, and categories into Oxanaut. Idempotent: re-running updates existing rows (matched by email/slug). Returns the import report (counts per table + per-row errors).



## OpenAPI

````yaml /openapi.json post /v1/admin/imports/paymenter
openapi: 3.0.0
info:
  title: OneSubnet Core API
  description: >-
    OneSubnet hosting panel API. Toutes les routes sont préfixées par /v1/
    (versioning URI). Les routes Panel sont appelées par le daemon Wings, pas
    par les clients. Les routes Admin nécessitent le rôle admin.
  version: '1.0'
  contact: {}
servers: []
security: []
tags:
  - name: Auth & Users
    description: Authentification, profil, gestion utilisateurs
  - name: Store
    description: 'Boutique: catégories, produits, panier'
  - name: Billing
    description: Facturation, checkout Stripe, webhooks
  - name: Services
    description: Services hébergés (enregistrements facturation)
  - name: Affiliation
    description: Parrainage et commissions
  - name: Notifications
    description: Notifications
  - name: Admin - RBAC
    description: Gestion des rôles, permissions, groupes
  - name: Admin - Store & Invoices
    description: CRUD produits, plans, coupons, factures
  - name: Admin - Settings & Tenants
    description: Configuration, multi-tenant, whitelabel
  - name: Admin - Audit
    description: Journal d'audit des requêtes
  - name: System
    description: Health, meta-info
paths:
  /v1/admin/imports/paymenter:
    post:
      tags:
        - Admin - Imports
      summary: Import a Paymenter SQL dump (admin)
      description: >-
        Parses a mysqldump of a Paymenter instance and maps users, offers,
        coupons, currencies, tax rates, and categories into Oxanaut. Idempotent:
        re-running updates existing rows (matched by email/slug). Returns the
        import report (counts per table + per-row errors).
      operationId: PaymenterImportController_importPaymenter_v1
      parameters: []
      responses:
        '201':
          description: ''
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````

## Related topics

- [List recent Paymenter imports (admin)](/api-reference/admin--imports/list-recent-paymenter-imports-admin.md)
- [Get a Paymenter import report by id (admin)](/api-reference/admin--imports/get-a-paymenter-import-report-by-id-admin.md)
- [Import update the panel's eggs](/api-reference/admin--nodes-&-provisioning/import-update-the-panels-eggs.md)
- [List eggs (local catalog incl. panel imports)](/api-reference/admin--nodes-&-provisioning/list-eggs-local-catalog-incl-panel-imports.md)
- [Import all PennyLane invoices into local DB (idempotent)](/api-reference/admin--settings-&-tenants/import-all-pennylane-invoices-into-local-db-idempotent.md)
