> ## Documentation Index
> Fetch the complete documentation index at: https://docs.range.org/llms.txt
> Use this file to discover all available pages before exploring further.

# List workspace registrations for a workflow template

> Filters combine with AND before pagination. Registrations are shared by every instance of a template in the workspace. Filters affect this list only, never workflow execution. Unsupported template filters and repeated values return 400.



## OpenAPI

````yaml /api-reference/platform-api.json get /v2/workflows/templates/{template}/accounts
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.27
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Transfer Enrichments
    description: Attach workspace-scoped notes and categories to transfers.
  - name: Counterparties
    description: Manage external entities, their addresses, bank accounts, and documents.
paths:
  /v2/workflows/templates/{template}/accounts:
    get:
      tags:
        - Workflows
      summary: List workspace registrations for a workflow template
      description: >-
        Filters combine with AND before pagination. Registrations are shared by
        every instance of a template in the workspace. Filters affect this list
        only, never workflow execution. Unsupported template filters and
        repeated values return 400.
      operationId: list
      parameters:
        - name: template
          required: true
          in: path
          schema:
            type: string
        - name: client_tax_id
          required: false
          in: query
          description: >-
            5711 only. Exact CPF/CNPJ; whitespace, periods, slashes and hyphens
            are removed. Type is optional.
          schema:
            type: string
        - name: client_tax_id_type
          required: false
          in: query
          description: 5711 only. May be used without a tax ID.
          schema:
            type: string
            enum:
              - cpf
              - cnpj
        - name: address_type
          required: false
          in: query
          description: 5710 only.
          schema:
            type: string
            enum:
              - CUSTODIA_PROPRIA_OMNIBUS
              - CUSTODIA_PROPRIA_SEGREGADO
              - SUBCUSTODIANTE_TERCEIRO
              - CONTRATO_TOKEN
              - CONTRATO_STAKING
              - VALIDADOR
              - DEPOSITO_EXCHANGE
              - NAO_VERIFICAVEL_ONCHAIN
              - '99'
        - name: wallet_type
          required: false
          in: query
          description: 5710 only.
          schema:
            type: string
            enum:
              - QUENTE
              - MORNA
              - FRIA
              - CUSTODIA_TERCEIRO
              - NAO_APLICAVEL
              - '99'
        - name: ownership
          required: false
          in: query
          schema:
            type: string
            enum:
              - own
              - client
              - other_fi
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 100
            default: 20
            type: number
        - name: cursor
          required: false
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowAccountsResponseDto'
components:
  schemas:
    WorkflowAccountsResponseDto:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/WorkflowAccountDto'
        meta:
          $ref: '#/components/schemas/CursorMetaDto'
      required:
        - items
        - meta
    WorkflowAccountDto:
      type: object
      properties:
        account_id:
          type: string
          format: uuid
        client_tax_id:
          type: string
          nullable: true
        client_tax_id_type:
          type: string
          nullable: true
          enum:
            - cpf
            - cnpj
        address_type:
          type: string
        wallet_type:
          type: string
      required:
        - account_id
    CursorMetaDto:
      type: object
      properties:
        next_cursor:
          type: string
          nullable: true
          description: >-
            Opaque string cursor pointing to the next page of results. null if
            there is no next page.
          example: eyJpZCI6IjkxeFFlV3Z...
        previous_cursor:
          type: string
          nullable: true
          description: >-
            Opaque string cursor pointing to the previous page of results. null
            if there is no previous page.
          example: eyJpZCI6IjkxeFFlV3Z...
        first_page_cursor:
          type: string
          description: >-
            Opaque string cursor pointing to the very first page in the entire
            dataset with respect to the current filter.
          example: eyJpZCI6IjkxeFFlV3Z...
        last_page_cursor:
          type: string
          nullable: true
          description: >-
            Opaque string cursor pointing to the very last page in the entire
            dataset with respect to the current filter.
          example: eyJpZCI6IjkxeFFlV3Z...
        total_count:
          type: number
          nullable: true
          description: Total number of results.
          example: 100
        page_number:
          type: number
          description: Current page number.
          example: 1
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````