30MHz Customer Registration API

The customer-registration API from 30MHz — 3 operation(s) for customer-registration.

Operations 3

GET /registration/{registrationId}/activate Activate a new pending registration #
DELETE /registration/{registrationId} Remove a customer registration #
POST /registration Create a new pending registration #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/30mhz-customer-registration-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

30mhz-customer-registration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '2.0'
  title: ZENSIE Customer Registration API
servers:
- url: https://api.30mhz.com/api
tags:
- name: Customer Registration
paths:
  /registration/{registrationId}/activate:
    get:
      tags:
      - Customer Registration
      summary: Activate a new pending registration
      description: ''
      operationId: activateRegistration
      parameters:
      - name: registrationId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: New registration activated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerRegistration'
            application/zensie-v2+json:
              schema:
                $ref: '#/components/schemas/CustomerRegistration'
  /registration/{registrationId}:
    delete:
      tags:
      - Customer Registration
      summary: Remove a customer registration
      description: Authentication required for this operation, authenticated user must have admin role.
      operationId: removeRegistration
      parameters:
      - name: registrationId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Customer registration has been removed.
        '403':
          description: User must be an admin.
        '404':
          description: Customer registration not found.
  /registration:
    post:
      tags:
      - Customer Registration
      summary: Create a new pending registration
      description: ''
      operationId: createRegistration
      responses:
        '201':
          description: New registration created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerRegistration'
            application/zensie-v2+json:
              schema:
                $ref: '#/components/schemas/CustomerRegistration'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NewCustomerRegistration'
components:
  schemas:
    NewCustomerRegistration:
      type: object
      properties:
        offerId:
          type: string
          description: Offer Id.
        organisationId:
          type: string
          description: Organisation Id.
        city:
          type: string
        country:
          type: string
        countryCode:
          type: string
        customerEmail:
          type: string
          description: Customer email.
        customerFirstName:
          type: string
          description: Customer first name.
        customerId:
          type: string
          description: Customer Id.
        customerLastName:
          type: string
          description: Customer last name.
        number:
          type: string
        organisationName:
          type: string
          description: Organisation name.
        partnerId:
          type: string
          description: Partner Id.
        postalCode:
          type: string
        siteName:
          type: string
          description: Site name.
        street:
          type: string
    CustomerRegistration:
      type: object
      properties:
        offerId:
          type: string
          description: Offer Id.
        organisationId:
          type: string
          description: Organisation Id.
        registrationId:
          type: string
          description: Registration Id.
        city:
          type: string
        country:
          type: string
        countryCode:
          type: string
        customerEmail:
          type: string
          description: Customer email.
        customerFirstName:
          type: string
          description: Customer first name.
        customerId:
          type: string
          description: Customer Id.
        customerLastName:
          type: string
          description: Customer last name.
        number:
          type: string
        organisationName:
          type: string
          description: Organisation name.
        partnerId:
          type: string
          description: Partner Id.
        postalCode:
          type: string
        siteName:
          type: string
          description: Site name.
        street:
          type: string
  securitySchemes:
    Bearer:
      description: ''
      type: apiKey
      name: Authorization
      in: header