Nfon Rating Profiles API

Rating profile management

Operations 2

DELETE /operators/{operatorId}/rating-profiles/{ratingProfileName} Delete rating profile #
GET /operators/{operatorId}/rating-profiles/{ratingProfileName} Get rating profile #

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/nfon-rating-profiles-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

nfon-rating-profiles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: APIs for managing PBX configuration, tenants, operators, licenses, and related resources
  title: PBX Configuration Rating Profiles API
  version: 2026.07.20
servers:
- url: /configuration/v1
tags:
- name: Rating Profiles
  description: Rating profile management
paths:
  /operators/{operatorId}/rating-profiles/{ratingProfileName}:
    delete:
      summary: Delete rating profile
      parameters:
      - schema:
          type: string
        required: true
        in: path
        description: Rating profile name
        name: ratingProfileName
      - schema:
          type: string
        required: true
        in: path
        name: operatorId
      tags:
      - Rating Profiles
      operationId: delete_57
      security:
      - oauth2:
        - tenant.admin
      responses:
        '404':
          description: Not found
        '204':
          description: Rating profile deleted
    get:
      summary: Get rating profile
      parameters:
      - schema:
          type: string
        required: true
        in: path
        description: Rating profile name
        name: ratingProfileName
      - schema:
          type: string
        required: true
        in: path
        name: operatorId
      tags:
      - Rating Profiles
      operationId: get_214
      security:
      - oauth2:
        - tenant.operator
      - oauth2:
        - tenant.admin
      responses:
        '200':
          content:
            application/vnd.collection.next+json:
              schema:
                $ref: '#/components/schemas/NfonApiResponse'
              example:
                links: {}
                data:
                - value: standard-rate
                  name: name
                - value: Standard rating profile for domestic calls
                  name: description
                href: /api/operators/example-id/rating-profiles/example-id
          description: Rating profile found
        '404':
          description: Not found
components:
  schemas:
    Links:
      description: Related resource links
      type: object
    NfonApiResponse:
      properties:
        links:
          $ref: '#/components/schemas/Links'
        data:
          description: Resource data (name/value pairs or structured object)
          type: object
        href:
          example: /api/sip-servers/100
          type: string
          description: Self-link to this resource
      type: object
      description: Standard API response envelope for a single resource
  securitySchemes:
    jwt:
      scheme: bearer
      bearerFormat: JWT
      type: http