Unitrends DomainsEntra API

The DomainsEntra API from Unitrends — 1 operation(s) for domainsentra.

Operations 1

GET /v1/entra/domains Returns a list of Microsoft Entra ID domains/tenants

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/unitrends-domainsentra-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

unitrends-domainsentra-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Public Agents Domains Entra API
  description: Description of Public API for Unitrends MSP.
  version: public_api-v1
servers:
- url: https://public-api.backup.net
security:
- Bearer: []
tags:
- name: DomainsEntra
paths:
  /v1/entra/domains:
    get:
      tags:
      - DomainsEntra
      summary: Returns a list of Microsoft Entra ID domains/tenants
      description: Visibility is restricted by tenant which issued credentials for access.
      parameters:
      - name: order_by
        in: query
        description: The ordering field.
        schema:
          $ref: '#/components/schemas/MSP.Portal.PublicApi.Api.Controllers.Spanning.GetDomains.Entra.GetEntraDomainsForPublicApiRequestOrderColumn'
      - name: order_direction
        in: query
        description: Direction of the order. E.g. "asc".
        schema:
          type: string
      - name: page_number
        in: query
        description: The page number. Default is 1.
        schema:
          maximum: 2147483647
          minimum: 1
          type: integer
          format: int32
      - name: page_size
        in: query
        description: The page size. Default is 50.
        schema:
          maximum: 2147483647
          minimum: 1
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          headers:
            Paging-Page-Size:
              description: Current page size.
              schema:
                type: integer
            Paging-Page-Number:
              description: Current page number.
              schema:
                type: integer
            Paging-Total-Records:
              description: Total amount of records.
              schema:
                type: integer
            Paging-Total-Pages:
              description: Total count of pages.
              schema:
                type: integer
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MSP.Portal.PublicApi.Api.Controllers.Spanning.GetDomains.Entra.GetEntraDomainsForPublicApiModel'
components:
  schemas:
    MSP.Portal.PublicApi.Api.Controllers.Spanning.GetDomains.BackupStatusModel:
      enum:
      - success
      - partial
      - failed
      - successfulNoChanges
      type: string
    MSP.Portal.PublicApi.Api.Controllers.Spanning.GetDomains.Entra.GetEntraDomainsForPublicApiModel:
      type: object
      properties:
        msId:
          type:
          - string
          - 'null'
          description: Microsoft Entra ID domain id
        name:
          type:
          - string
          - 'null'
          description: Name of the domain
        internalId:
          type:
          - string
          - 'null'
          description: UniView Domain id
        region:
          type:
          - string
          - 'null'
          description: Region of the domain
        licenseSubtype:
          type:
          - string
          - 'null'
          description: License type
        mappedCustomerId:
          type:
          - string
          - 'null'
          description: Mapped customer UniView id
          format: uuid
        mappedCustomerName:
          type:
          - string
          - 'null'
          description: Mapped customer UniView name
        numberOfSeats:
          type:
          - integer
          - 'null'
          description: Number of seats used
          format: int32
        numberOfUsedLicenses:
          type:
          - integer
          - 'null'
          description: Number of licenses used
          format: int32
        assignedLicenses:
          type:
          - integer
          - 'null'
          description: Number of licenses assigned to the domain
          format: int32
        expirationDate:
          type:
          - string
          - 'null'
          description: Domain expiration date
          format: date-time
        backupStatusForLast7Days:
          $ref: '#/components/schemas/MSP.Portal.PublicApi.Api.Controllers.Spanning.GetDomains.BackupStatusModel'
        last30Backups:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/MSP.Portal.PublicApi.Api.Controllers.Spanning.GetDomains.Entra.BackupStatusWithDateAndProblemCountModel'
          description: List of last 30 backups
      additionalProperties: false
    MSP.Portal.PublicApi.Api.Controllers.Spanning.GetDomains.Entra.BackupStatusWithDateAndProblemCountModel:
      type: object
      properties:
        backupStatus:
          $ref: '#/components/schemas/MSP.Portal.PublicApi.Api.Controllers.Spanning.GetDomains.BackupStatusModel'
        backupTimestamp:
          type: string
          description: Backup date UTC
          format: date-time
        problemsCount:
          type:
          - integer
          - 'null'
          description: Problem count
          format: int32
      additionalProperties: false
    MSP.Portal.PublicApi.Api.Controllers.Spanning.GetDomains.Entra.GetEntraDomainsForPublicApiRequestOrderColumn:
      enum:
      - name
      - mapped_customer_name
      type: string
  securitySchemes:
    Bearer:
      type: apiKey
      description: 'JWT Authorization header using the Bearer scheme. Example value: "Bearer {token}"'
      name: Authorization
      in: header