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

# Get Selection Members Archive Rows

> Get the list of members in this selection.

The type of members depends on the target table of the selection.



## OpenAPI

````yaml /openapi/rest/openapi-v3-Selection.json get /api/v1/Selection/{selectionId}/Members
openapi: 3.0.0
info:
  version: v1-REST
  title: SuperOffice REST API v1
  description: SuperOffice REST API - Selection
  contact:
    name: SuperOffice DevNet
    url: https://docs.superoffice.com/en/api/index.html
    email: sdk@superoffice.com
servers:
  - url: http://localhost:56350
  - url: https://localhost:56350
security: []
tags: []
externalDocs:
  description: >-
    The SuperOffice DevNet Community has more documentation, examples, and
    discussion forums.
  url: https://community.superoffice.com/en/developer/
paths:
  /api/v1/Selection/{selectionId}/Members:
    get:
      tags:
        - Selection
      summary: Get Selection Members Archive Rows
      description: |-
        Get the list of members in this selection.

        The type of members depends on the target table of the selection.
      operationId: v1SelectionEntity_GetSelectionMembersArchiveRows
      parameters:
        - name: selectionId
          in: path
          description: The selectionId we want selection members for.
          required: true
          schema:
            format: int32
            type: integer
        - name: $select
          in: query
          description: >-
            (optional) Comma separated Column names to include in result. List
            of columns varies depending on the selection's TargetTable. e.g.
            'name', 'firstname', 'startTime'
          required: false
          schema:
            type: string
        - name: $mode
          in: query
          description: >-
            FULL (with raw values and hints for each value) or SLIM (just the
            display values)
          required: false
          schema:
            type: string
        - name: $format
          in: query
          description: >-
            Set XML or JSON output format; override the format determined from
            Accept header.
          required: false
          schema:
            type: string
        - name: Accept-Language
          in: header
          description: >-
            Convert string references and multi-language values into a specified
            language (iso2) code.
          required: false
          schema:
            type: string
        - name: SO-Language
          in: header
          description: >-
            Convert string references and multi-language values into a specified
            language (iso2) code. Overrides Accept-Language value.
          required: false
          schema:
            type: string
        - name: SO-Culture
          in: header
          description: >-
            Number, date formatting in a specified culture (iso2 language) code.
            Partially overrides SO-Language/Accept-Language value. Ignored if no
            Language set.
          required: false
          schema:
            type: string
        - name: SO-TimeZone
          in: header
          description: >-
            Specify the timezone code that you would like date/time responses
            converted to.
          required: false
          schema:
            type: string
        - name: SO-AppToken
          in: header
          description: >-
            The application token that identifies the partner app. Used when
            calling Online WebAPI from a server.
          required: false
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/SuperOffice.Services.WebApi.OData.ODataSlimResponse
            text/json:
              schema:
                $ref: >-
                  #/components/schemas/SuperOffice.Services.WebApi.OData.ODataSlimResponse
            application/xml:
              schema:
                $ref: >-
                  #/components/schemas/SuperOffice.Services.WebApi.OData.ODataSlimResponse
            text/xml:
              schema:
                $ref: >-
                  #/components/schemas/SuperOffice.Services.WebApi.OData.ODataSlimResponse
            application/json-patch+json:
              schema:
                $ref: >-
                  #/components/schemas/SuperOffice.Services.WebApi.OData.ODataSlimResponse
            application/merge-patch+json:
              schema:
                $ref: >-
                  #/components/schemas/SuperOffice.Services.WebApi.OData.ODataSlimResponse
      security:
        - SuperOffice_Password: []
          SuperId_Authentication: []
components:
  schemas:
    SuperOffice.Services.WebApi.OData.ODataSlimResponse:
      description: Easy to use archive results - just a flat list of values.
      type: object
      properties:
        odata.metadata:
          type: string
        odata.nextLink:
          type: string
        value:
          type: array
          items:
            type: object
            additionalProperties:
              type: object

````

## Related topics

- [Get Selection Members Archive Rows](/en/api/reference/restful/agent/selection_agent/get-selection-members-archive-rows.md)
- [SuperOffice.WebApi.Data.Selection GetSelectionMembersArchiveRowsRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Selection_GetSelectionMembersArchiveRowsRequest.md)
- [NSSelectionAgent](/en/automation/crmscript/reference/CRMScript.NetServer.NSSelectionAgent.md)
- [Get Selection Shadow Members Archive Rows](/en/api/reference/restful/rest/selection/get-selection-shadow-members-archive-rows.md)
- [SuperOffice.WebApi.Data.Selection GetSelectionShadowMembersArchiveRowsRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Selection_GetSelectionShadowMembersArchiveRowsRequest.md)
