Conga CDN Store API

The CDN Store API from Conga — 3 operation(s) for cdn store.

Operations 4

DELETE /api/cdnstore/v1/files Delete a file #
DELETE /api/cdnstore/v1/files/bulk Delete multiple files #
GET /api/cdnstore/v1/files/{fileFullPath} Get the file from the CDN store #
POST /api/cdnstore/v1/files/{fileFullPath} Upload a file(upto 100 MB) to the CDN store #

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-cdn-store-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

conga-cdn-store-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: File Store CDN Store API
  version: v1
servers:
- url: https://rls.congacloud.com
security:
- Bearer: []
tags:
- name: CDN Store
paths:
  /api/cdnstore/v1/files:
    delete:
      tags:
      - CDN Store
      summary: Delete a file
      description: Validates if the specified file exists at the given path and deletes it if found.; otherwise, it returns an exception.
      requestBody:
        description: CDNFileDeleteRequest
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CDNFileDeleteRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/CDNFileDeleteRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/CDNFileDeleteRequest'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CDNFileDeleteResponseAPIResponse'
        '404':
          description: Not Found
        '503':
          description: Service Temporarily Unavailable
      operationId: deleteApiCdnstoreV1Files
      x-operation-id-source: derived
  /api/cdnstore/v1/files/bulk:
    delete:
      tags:
      - CDN Store
      summary: Delete multiple files
      description: Validates if the specified files exist at the given path and deletes it if found.; otherwise, it returns an exception.
      requestBody:
        description: Bulk delete file request
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CDNBulkFileDeleteRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/CDNBulkFileDeleteRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/CDNBulkFileDeleteRequest'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CDNFileDeleteResponseAPIResponse'
        '404':
          description: Not Found
        '503':
          description: Service Temporarily Unavailable
      operationId: deleteApiCdnstoreV1FilesBulk
      x-operation-id-source: derived
  /api/cdnstore/v1/files/{fileFullPath}:
    get:
      tags:
      - CDN Store
      summary: Get the file from the CDN store
      description: Retrieves a file's details and contents from the CDN store.
      parameters:
      - name: fileFullPath
        in: path
        required: true
        schema:
          type: string
      responses:
        '503':
          description: Service Temporarily Unavailable
      operationId: getApiCdnstoreV1FilesByFileFullPath
      x-operation-id-source: derived
    post:
      tags:
      - CDN Store
      summary: Upload a file(upto 100 MB) to the CDN store
      description: Uploads a file (upto 100 MB) to the CDN store.
      parameters:
      - name: fileFullPath
        in: path
        required: true
        schema:
          type: string
      responses:
        '503':
          description: Service Temporarily Unavailable
      operationId: postApiCdnstoreV1FilesByFileFullPath
      x-operation-id-source: derived
components:
  schemas:
    CDNBulkFileDeleteRequest:
      type: object
      properties:
        FilePath:
          type:
          - string
          - 'null'
        FileNames:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    ErrorDetail:
      type: object
      properties:
        Message:
          type:
          - string
          - 'null'
      additionalProperties: false
    CDNFileDeleteResponseAPIResponse:
      type: object
      properties:
        Success:
          type: boolean
        RecordCount:
          type:
          - integer
          - 'null'
          format: int64
        Data:
          $ref: '#/components/schemas/CDNFileDeleteResponse'
        Errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ErrorDetail'
        Profile:
          type:
          - string
          - 'null'
        TotalTime:
          type: number
          format: float
        StatusCode:
          enum:
          - Continue
          - SwitchingProtocols
          - Processing
          - EarlyHints
          - OK
          - Created
          - Accepted
          - NonAuthoritativeInformation
          - NoContent
          - ResetContent
          - PartialContent
          - MultiStatus
          - AlreadyReported
          - IMUsed
          - MultipleChoices
          - MovedPermanently
          - Found
          - SeeOther
          - NotModified
          - UseProxy
          - Unused
          - TemporaryRedirect
          - PermanentRedirect
          - BadRequest
          - Unauthorized
          - PaymentRequired
          - Forbidden
          - NotFound
          - MethodNotAllowed
          - NotAcceptable
          - ProxyAuthenticationRequired
          - RequestTimeout
          - Conflict
          - Gone
          - LengthRequired
          - PreconditionFailed
          - RequestEntityTooLarge
          - RequestUriTooLong
          - UnsupportedMediaType
          - RequestedRangeNotSatisfiable
          - ExpectationFailed
          - MisdirectedRequest
          - UnprocessableEntity
          - Locked
          - FailedDependency
          - UpgradeRequired
          - PreconditionRequired
          - TooManyRequests
          - RequestHeaderFieldsTooLarge
          - UnavailableForLegalReasons
          - InternalServerError
          - NotImplemented
          - BadGateway
          - ServiceUnavailable
          - GatewayTimeout
          - HttpVersionNotSupported
          - VariantAlsoNegotiates
          - InsufficientStorage
          - LoopDetected
          - NotExtended
          - NetworkAuthenticationRequired
          type:
          - string
          - 'null'
        HasMoreRecords:
          type:
          - boolean
          - 'null'
        NextCursor:
          type:
          - string
          - 'null'
        Warnings:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ErrorDetail'
      additionalProperties: false
    CDNFileDeleteRequest:
      type: object
      properties:
        FileName:
          type:
          - string
          - 'null'
        FilePath:
          type:
          - string
          - 'null'
      additionalProperties: false
    CDNFileDeleteResponse:
      type: object
      properties:
        FileName:
          type:
          - string
          - 'null'
        FilePath:
          type:
          - string
          - 'null'
        IsDeleted:
          type: boolean
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: Please insert JWT with Bearer into field
      name: Authorization
      in: header