CloudAlly Partners API

Partner-portal account, billing, and reseller endpoints.

Operations 7

GET /v1/partners Get partner information #
GET /v1/partners/billing Get partner billing data #
GET /v1/partners/status Get partner status #
GET /v1/partners/tasks List partner tasks #
GET /v1/partners/resellers List partner resellers #
GET /v1/partners/resellers/{resellerId} Get a reseller #
GET /v1/partners/users List users managed by the partner #

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/cloudally-partners-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

cloudally-partners-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CloudAlly Authentication Partners API
  version: '1'
  description: CloudAlly (now part of OpenText Cybersecurity) is a SaaS backup and recovery service that protects Microsoft 365, Google Workspace, Salesforce, Box, and Dropbox data. The CloudAlly REST API lets administrators and partners automate backup-task management, restore/download requests, user provisioning, partner-portal operations, and billing reporting. Partners obtain a Client ID and Client Secret (generated in the portal) and exchange them at the /auth/partner endpoint for an access token; portal users sign in against /auth. Tokens are presented as Authorization Bearer headers, and responses are JSON.
  contact:
    name: CloudAlly Support
    url: https://www.cloudally.com/support/
  license:
    name: CloudAlly Terms of Service
    url: https://www.cloudally.com/terms-of-service/
servers:
- url: https://api.cloudally.com
  description: CloudAlly Production API
security:
- bearerAuth: []
tags:
- name: Partners
  description: Partner-portal account, billing, and reseller endpoints.
paths:
  /v1/partners:
    get:
      operationId: getPartner
      summary: Get partner information
      tags:
      - Partners
      responses:
        '200':
          description: Partner profile.
  /v1/partners/billing:
    get:
      operationId: getPartnerBilling
      summary: Get partner billing data
      tags:
      - Partners
      responses:
        '200':
          description: Billing data for the authenticated partner.
  /v1/partners/status:
    get:
      operationId: getPartnerStatus
      summary: Get partner status
      tags:
      - Partners
      responses:
        '200':
          description: Partner status overview.
  /v1/partners/tasks:
    get:
      operationId: listPartnerTasks
      summary: List partner tasks
      tags:
      - Partners
      responses:
        '200':
          description: Tasks managed by the partner.
  /v1/partners/resellers:
    get:
      operationId: listResellers
      summary: List partner resellers
      tags:
      - Partners
      responses:
        '200':
          description: Resellers under the partner.
  /v1/partners/resellers/{resellerId}:
    parameters:
    - name: resellerId
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: getReseller
      summary: Get a reseller
      tags:
      - Partners
      responses:
        '200':
          description: Reseller details.
  /v1/partners/users:
    get:
      operationId: listPartnerUsers
      summary: List users managed by the partner
      tags:
      - Partners
      responses:
        '200':
          description: Users under the partner.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT