DAS Technology Account API

The Account API from DAS Technology — 30 operation(s) for account.

Operations 30

GET /v1/account/{accountGuid} Retrieve account details by account identifer #
GET /v1/account/{accountGuid}/socialActivity Retrieve social activities by account identifier #
GET /v1/account/{accountGuid}/reviewV2 Retrieve reviews by account identifier, supports partial filter #
GET /v1/account/{accountGuid}/review Retrieve reviews by account identifier, supports partial filter #
GET /v1/account/{accountGuid}/reviewStats Retrieve review stats by account identifier #
GET /v1/account/{accountGuid}/reviewStatsByInterval Retrieve review stats for interval and limit by account identifier #
GET /v1/account/{accountGuid}/surveyStatsByInterval Retrieve survey stats for interval and limit by account identifier #
GET /v1/account/{accountGuid}/survey Retrieve surveys by account identifier #
GET /v1/account/{accountGuid}/survey/responsesV2 Retrieve survey responses by account identifier #
GET /v1/account/{accountGuid}/surveyStats Retrieve survey stats by account identifier #
GET /v1/account/{accountGuid}/survey/response Retrieve survey responses by account identifier #
GET /v1/account/{accountGuid}/owner Retrieve account owner by account identifier #
GET /v1/account/{accountGuid}/employee Retrieve employees by account identifier #
GET /v1/account/{accountGuid}/employeeStats Retrieve employee stats by account identifier #
GET /v1/account/{accountGuid}/enterpriseStatsV2 Retrieve survey and review stats by account identifier #
GET /v1/account/{accountGuid}/enterpriseStats Retrieve survey and review stats by account identifier #
GET /v1/account/{accountGuid}/parent Retrieves parent accounts of the referenced account #
GET /v1/account/{accountGuid}/child Retrieves child accounts of the referenced account #
GET /v1/account/{accountGuid}/descendant #
GET /v1/account/{accountGuid}/heirarchy #
GET /v1/account/{accountGuid}/unsubscribe #
GET /v1/account/{accountGuid}/unsubscribeReport #
GET /v1/account/{accountGuid}/gm2016 Determine if a given account has an active GM 2016 package #
GET /v1/account/{accountGuid}/activePackageList Returns a list of active packages #
GET /v1/account/{accountGuid}/notificationsettings #
GET /v1/account/{accountGuid}/toyotareputation #
POST /v1/account/{accountGuid}/activity #
POST /v1/account/{dealerGuid}/surveySample/{email} #
GET /v1/account/provisionDashboard/{accountGuid} #
GET /v1/account/smsprovisiondetails/{accountGuid} Retrieve account sms provision details by account identifer #

Documentation

Specifications

Other Resources

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/das-technology-account-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

das-technology-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: DASWebAPI V1 Account API
servers:
- url: https://api.digitalairstrike.com
tags:
- name: Account
paths:
  /v1/account/{accountGuid}:
    get:
      tags:
      - Account
      summary: Retrieve account details by account identifer
      operationId: Account_GetAccount
      parameters:
      - name: accountGuid
        in: path
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.PortalAccountDetailed'
            text/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.PortalAccountDetailed'
            application/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.PortalAccountDetailed'
            text/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.PortalAccountDetailed'
            text/html:
              schema:
                $ref: '#/components/schemas/DAS.Models.PortalAccountDetailed'
  /v1/account/{accountGuid}/socialActivity:
    get:
      tags:
      - Account
      summary: Retrieve social activities by account identifier
      operationId: Account_GetSocialActivities
      parameters:
      - name: accountGuid
        in: path
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SocialActivity'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SocialActivity'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SocialActivity'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SocialActivity'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SocialActivity'
  /v1/account/{accountGuid}/reviewV2:
    get:
      tags:
      - Account
      summary: Retrieve reviews by account identifier, supports partial filter
      operationId: Account_GetReviewsV2
      parameters:
      - name: accountGuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: fromDate
        in: query
        required: true
        schema:
          type: string
          format: date-time
      - name: toDate
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: categories
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: reviewType
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: source
        in: query
        required: false
        schema:
          type: string
      - name: siteName
        in: query
        required: false
        schema:
          type: string
      - name: disputedReview
        in: query
        required: false
        schema:
          type: boolean
      - name: state
        in: query
        required: false
        schema:
          type: string
      - name: hasResponse
        in: query
        required: false
        schema:
          type: boolean
      - name: closedLoop
        in: query
        required: false
        schema:
          type: boolean
      - name: brands
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: orderBy
        in: query
        required: false
        schema:
          type: string
      - name: page
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: pageSize
        in: query
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.ReviewV2'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.ReviewV2'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.ReviewV2'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.ReviewV2'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.ReviewV2'
  /v1/account/{accountGuid}/review:
    get:
      tags:
      - Account
      summary: Retrieve reviews by account identifier, supports partial filter
      operationId: Account_GetReviews
      parameters:
      - name: accountGuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: query.fromDate
        in: query
        required: true
        schema:
          type: string
          format: date-time
      - name: query.toDate
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: query.categories
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: query.reviewType
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: query.source
        in: query
        required: false
        schema:
          type: string
      - name: query.siteName
        in: query
        required: false
        schema:
          type: string
      - name: query.disputedReview
        in: query
        required: false
        schema:
          type: boolean
      - name: query.state
        in: query
        required: false
        schema:
          type: string
      - name: query.hasResponse
        in: query
        required: false
        schema:
          type: boolean
      - name: query.closedLoop
        in: query
        required: false
        schema:
          type: boolean
      - name: query.brands
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: query.orderBy
        in: query
        required: false
        schema:
          type: string
      - name: query.page
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: query.pageSize
        in: query
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Review'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Review'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Review'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Review'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Review'
  /v1/account/{accountGuid}/reviewStats:
    get:
      tags:
      - Account
      summary: Retrieve review stats by account identifier
      operationId: Account_GetReviewStatsAsync
      parameters:
      - name: accountGuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: query.fromDate
        in: query
        required: true
        schema:
          type: string
          format: date-time
      - name: query.toDate
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: query.categories
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: query.reviewType
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: query.source
        in: query
        required: false
        schema:
          type: string
      - name: query.siteName
        in: query
        required: false
        schema:
          type: string
      - name: query.disputedReview
        in: query
        required: false
        schema:
          type: boolean
      - name: query.state
        in: query
        required: false
        schema:
          type: string
      - name: query.hasResponse
        in: query
        required: false
        schema:
          type: boolean
      - name: query.closedLoop
        in: query
        required: false
        schema:
          type: boolean
      - name: query.brands
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: query.orderBy
        in: query
        required: false
        schema:
          type: string
      - name: query.page
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: query.pageSize
        in: query
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.ReviewStats'
            text/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.ReviewStats'
            application/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.ReviewStats'
            text/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.ReviewStats'
            text/html:
              schema:
                $ref: '#/components/schemas/DAS.Models.ReviewStats'
  /v1/account/{accountGuid}/reviewStatsByInterval:
    get:
      tags:
      - Account
      summary: Retrieve review stats for interval and limit by account identifier
      operationId: Account_GetReviewStatsByIntervalAsync
      parameters:
      - name: accountGuid
        in: path
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      - name: interval
        in: query
        description: day || week || month || year
        required: true
        schema:
          type: string
      - name: limit
        in: query
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - name: reviewType
        in: query
        description: ''
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.ReviewStatsByInterval'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.ReviewStatsByInterval'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.ReviewStatsByInterval'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.ReviewStatsByInterval'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.ReviewStatsByInterval'
  /v1/account/{accountGuid}/surveyStatsByInterval:
    get:
      tags:
      - Account
      summary: Retrieve survey stats for interval and limit by account identifier
      operationId: Account_GetSurveyStatsByIntervalAsync
      parameters:
      - name: accountGuid
        in: path
        description: The account unique identifier.
        required: true
        schema:
          type: string
          format: uuid
      - name: interval
        in: query
        description: day || week || month || year
        required: true
        schema:
          type: string
      - name: limit
        in: query
        description: The limit.
        required: true
        schema:
          type: integer
          format: int32
      - name: surveyType
        in: query
        description: Type of the survey.
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyStatsByInterval'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyStatsByInterval'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyStatsByInterval'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyStatsByInterval'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyStatsByInterval'
  /v1/account/{accountGuid}/survey:
    get:
      tags:
      - Account
      summary: Retrieve surveys by account identifier
      operationId: Account_GetSurveys
      parameters:
      - name: accountGuid
        in: path
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      - name: query.fromDate
        in: query
        required: true
        schema:
          type: string
          format: date-time
      - name: query.toDate
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: query.surveyType
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: query.source
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Survey'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Survey'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Survey'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Survey'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Survey'
  /v1/account/{accountGuid}/survey/responsesV2:
    get:
      tags:
      - Account
      summary: Retrieve survey responses by account identifier
      operationId: Account_GetSurveyResponsesV2Async
      parameters:
      - name: accountGuid
        in: path
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      - name: page
        in: query
        required: true
        schema:
          type: integer
          format: int32
      - name: pageSize
        in: query
        required: true
        schema:
          type: integer
          format: int32
      - name: orderBy
        in: query
        required: false
        schema:
          type: string
      - name: query.fromDate
        in: query
        required: true
        schema:
          type: string
          format: date-time
      - name: query.toDate
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: query.surveyType
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: query.source
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyV2Response'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyV2Response'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyV2Response'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyV2Response'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyV2Response'
  /v1/account/{accountGuid}/surveyStats:
    get:
      tags:
      - Account
      summary: Retrieve survey stats by account identifier
      operationId: Account_GetSurveyStatsAsync
      parameters:
      - name: accountGuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: query.fromDate
        in: query
        required: true
        schema:
          type: string
          format: date-time
      - name: query.toDate
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: query.surveyType
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: query.source
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.SurveyStatsV2'
            text/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.SurveyStatsV2'
            application/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.SurveyStatsV2'
            text/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.SurveyStatsV2'
            text/html:
              schema:
                $ref: '#/components/schemas/DAS.Models.SurveyStatsV2'
  /v1/account/{accountGuid}/survey/response:
    get:
      tags:
      - Account
      summary: Retrieve survey responses by account identifier
      operationId: Account_GetSurveyResponsesAsync
      parameters:
      - name: accountGuid
        in: path
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      - name: startDate
        in: query
        description: ''
        required: true
        schema:
          type: string
          format: date-time
      - name: endDate
        in: query
        description: ''
        required: false
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyResponseLegacy'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyResponseLegacy'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyResponseLegacy'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyResponseLegacy'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.SurveyResponseLegacy'
  /v1/account/{accountGuid}/owner:
    get:
      tags:
      - Account
      summary: Retrieve account owner by account identifier
      operationId: Account_GetOwner
      parameters:
      - name: accountGuid
        in: path
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.AccountManager'
            text/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.AccountManager'
            application/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.AccountManager'
            text/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.AccountManager'
            text/html:
              schema:
                $ref: '#/components/schemas/DAS.Models.AccountManager'
  /v1/account/{accountGuid}/employee:
    get:
      tags:
      - Account
      summary: Retrieve employees by account identifier
      operationId: Account_GetEmployee
      parameters:
      - name: accountGuid
        in: path
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Employee'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Employee'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Employee'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Employee'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Core.EntityFramework.Employee'
  /v1/account/{accountGuid}/employeeStats:
    get:
      tags:
      - Account
      summary: Retrieve employee stats by account identifier
      operationId: Account_GetEmployeeStatsAsync
      parameters:
      - name: accountGuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: fromDate
        in: query
        required: true
        schema:
          type: string
          format: date-time
      - name: toDate
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: type
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.EmployeeStats'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.EmployeeStats'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.EmployeeStats'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.EmployeeStats'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.EmployeeStats'
  /v1/account/{accountGuid}/enterpriseStatsV2:
    get:
      tags:
      - Account
      summary: Retrieve survey and review stats by account identifier
      operationId: Account_GetEnterpriseStatsAsyncV2
      parameters:
      - name: accountGuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: fromDate
        in: query
        required: true
        schema:
          type: string
          format: date-time
      - name: toDate
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: type
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.EnterpriseStatsV2'
            text/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.EnterpriseStatsV2'
            application/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.EnterpriseStatsV2'
            text/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.EnterpriseStatsV2'
            text/html:
              schema:
                $ref: '#/components/schemas/DAS.Models.EnterpriseStatsV2'
  /v1/account/{accountGuid}/enterpriseStats:
    get:
      tags:
      - Account
      summary: Retrieve survey and review stats by account identifier
      operationId: Account_GetEnterpriseStatsAsync
      parameters:
      - name: accountGuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: fromDate
        in: query
        required: true
        schema:
          type: string
          format: date-time
      - name: toDate
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: type
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.EnterpriseStats'
            text/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.EnterpriseStats'
            application/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.EnterpriseStats'
            text/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.EnterpriseStats'
            text/html:
              schema:
                $ref: '#/components/schemas/DAS.Models.EnterpriseStats'
  /v1/account/{accountGuid}/parent:
    get:
      tags:
      - Account
      summary: Retrieves parent accounts of the referenced account
      operationId: Account_GetParent
      parameters:
      - name: accountGuid
        in: path
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.PortalAccount'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.PortalAccount'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.PortalAccount'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.PortalAccount'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.PortalAccount'
  /v1/account/{accountGuid}/child:
    get:
      tags:
      - Account
      summary: Retrieves child accounts of the referenced account
      operationId: Account_GetChild
      parameters:
      - name: accountGuid
        in: path
        description: ''
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.PortalAccount'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.PortalAccount'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.PortalAccount'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.PortalAccount'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.PortalAccount'
  /v1/account/{accountGuid}/descendant:
    get:
      tags:
      - Account
      operationId: Account_GetDescendant
      parameters:
      - name: accountGuid
        in: path
        required: true
        schema:
       

# --- truncated at 32 KB (98 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/das-technology/refs/heads/main/openapi/das-technology-account-api-openapi.yml