Conga Backup Admin API

The BackupAdmin API from Conga — 1 operation(s) for backupadmin.

Operations 3

DELETE /v1/backup-admin Delete the backup administrator #
GET /v1/backup-admin Get the backup administrator #
POST /v1/backup-admin Save the backup administrator #

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/conga-backupadmin-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 email required.

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

OpenAPI Specification

conga-backupadmin-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Approvals Backup Admin API
  description: '

    The Approvals API is used to submit, preview, and retrieve approval processes.

    '
  version: v1
servers:
- url: https://rls.congacloud.com/api/approvals
security: []
tags:
- name: BackupAdmin
paths:
  /v1/backup-admin:
    delete:
      tags:
      - BackupAdmin
      summary: Delete the backup administrator
      description: Delete the backup admin user.
      operationId: BackupAdmin_DeleteBackupAdminUser
      responses:
        '200':
          description: Boolean (`true` if deleted)
          content:
            application/json:
              schema:
                type: boolean
      security:
      - oauth2: []
      - Bearer: []
    get:
      tags:
      - BackupAdmin
      summary: Get the backup administrator
      description: Retrieves details on the currently logged-in user's backup administrator.
      operationId: BackupAdmin_GetBackupAdminUser
      responses:
        '200':
          description: Backup admin's user info
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdminUserResponse'
      security:
      - oauth2: []
      - Bearer: []
    post:
      tags:
      - BackupAdmin
      summary: Save the backup administrator
      description: Create or update the backup admin user.
      operationId: BackupAdmin_UpsertBackupAdminUser
      requestBody:
        x-name: backupAdminUser
        description: The BackupAdminUser
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BackupAdminUser'
        required: true
        x-position: 1
      responses:
        '200':
          description: The backup admin user
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BackupAdminUser'
      security:
      - oauth2: []
      - Bearer: []
components:
  schemas:
    UserType:
      type: string
      description: ''
      x-enumNames:
      - All
      - Admin
      - BackupAdmin
      enum:
      - all
      - admin
      - backup-admin
    AdminUser:
      type: object
      additionalProperties: false
      properties:
        Id:
          type:
          - string
          - 'null'
        Name:
          type:
          - string
          - 'null'
        Email:
          type:
          - string
          - 'null'
        Initials:
          type:
          - string
          - 'null'
    BackupAdminUser:
      type: object
      additionalProperties: false
      properties:
        Id:
          type:
          - string
          - 'null'
        Name:
          type:
          - string
          - 'null'
        Email:
          type:
          - string
          - 'null'
        Initials:
          type:
          - string
          - 'null'
    AdminUserResponse:
      allOf:
      - $ref: '#/components/schemas/AdminUser'
      - type: object
        additionalProperties: false
        properties:
          UserType:
            $ref: '#/components/schemas/UserType'
  securitySchemes:
    Bearer:
      type: apiKey
      description: 'Use a JWT Bearer token. (Example: Bearer eyJhbGciO...)'
      name: Authorization
      in: header
    oauth2:
      type: oauth2
      description: Login with a Salesforce or SalesforceSandbox account
      flows:
        authorizationCode:
          authorizationUrl: https://login-rls.congacloud.com/api/v1/auth//connect/authorize
          tokenUrl: https://login-rls.congacloud.com/api/v1/auth//connect/token
          scopes:
            openid: openid
            profile: profile
            offline_access: offline_access
            Auth.Api.Platform: Auth.Api.Platform