Guru CardComments API

The CardComments API from Guru — 2 operation(s) for cardcomments.

OpenAPI Specification

guru-cardcomments-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Guru Analytics CardComments API
  version: 1.0.0
  description: 'REST API for accessing and managing Guru data programmatically. Supports

    cards, collections, folders, announcements, search, people, groups, tags,

    templates, comments, verifiers, and answers. Authentication is via OAuth 2.0

    (recommended) or API tokens.

    '
  contact:
    name: Guru Developer Network
    url: https://developer.getguru.com
servers:
- url: https://api.getguru.com/api/v1
  description: Guru production API
security:
- basicAuth: []
- bearerAuth: []
tags:
- name: CardComments
paths:
  /cards/comments/create:
    post:
      summary: Create card comment
      operationId: createCardComment
      tags:
      - CardComments
      responses:
        '201':
          description: Comment created.
  /cards/comments:
    get:
      summary: List card comments
      operationId: listCardComments
      tags:
      - CardComments
      responses:
        '200':
          description: List of comments.
    delete:
      summary: Delete card comment
      operationId: deleteCardComment
      tags:
      - CardComments
      responses:
        '204':
          description: Comment deleted.
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: API token authentication via HTTP Basic.
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 bearer token.