> ## Documentation Index
> Fetch the complete documentation index at: https://cantonfoundation-update-ref-tables.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# POST /v0/admin/sv/voteresults



## OpenAPI

````yaml /openapi/splice/scan/scan.yaml post /v0/admin/sv/voteresults
openapi: 3.0.0
info:
  title: Scan API
  version: 0.0.1
servers:
  - url: https://scan.sv-1.global.canton.network.sync.global/api/scan
security: []
tags:
  - name: external
    description: >
      These endpoints are intended for public usage and will remain
      backward-compatible.
  - name: internal
    description: >
      For internal usage only, not guaranteed to be stable or
      backward-compatible.
  - name: deprecated
    description: |
      These endpoints are deprecated and will be removed in a future release.
  - name: scan
    description: |
      The internal and external endpoints.
  - name: pre-alpha
    description: |
      Still under active development, highly unstable. Do not use in production.
paths:
  /v0/admin/sv/voteresults:
    post:
      tags:
        - internal
        - scan
      summary: POST /v0/admin/sv/voteresults
      operationId: listVoteRequestResults
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListVoteResultsRequest'
      responses:
        '200':
          description: ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListDsoRulesVoteResultsResponse'
components:
  schemas:
    ListVoteResultsRequest:
      type: object
      required:
        - limit
      properties:
        actionName:
          type: string
        accepted:
          type: boolean
        requester:
          type: string
        effectiveFrom:
          type: string
        effectiveTo:
          type: string
        limit:
          type: integer
        pageToken:
          type: integer
          description: >
            Cursor for pagination. When requesting the next page of results,
            pass the `next_page_token` from the previous response.

            Results are ordered by effective date (the accepted vote's
            effectiveAt, or the result's completedAt otherwise), descending.
    ListDsoRulesVoteResultsResponse:
      type: object
      required:
        - dso_rules_vote_results
      properties:
        dso_rules_vote_results:
          type: array
          items:
            type: object
        next_page_token:
          type: integer
          description: >
            Cursor for the next page of results. Pass this as `pageToken` in the
            request.

            If absent or `null`, there are no more pages.

````