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

# List all members

> Return a list of the members from your organisation.
The members are returned sorted by creation date, with the most recent member appearing first.



## OpenAPI

````yaml api-reference/api.json get /2025-04/members
openapi: 3.1.0
info:
  title: PullRule
  version: 0.0.1
servers:
  - url: https://pullrule.com/api
    description: Production
security:
  - http: []
tags:
  - name: Account
  - name: Members
  - name: Pull requests
  - name: Rules
  - name: Users
paths:
  /2025-04/members:
    get:
      tags:
        - Members
      summary: List all members
      description: >-
        Return a list of the members from your organisation.

        The members are returned sorted by creation date, with the most recent
        member appearing first.
      operationId: v202504.members.index
      responses:
        '200':
          description: Array of `Member`
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Member'
                required:
                  - data
        '401':
          $ref: '#/components/responses/AuthenticationException'
components:
  schemas:
    Member:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the object.
        name:
          type: string
          description: The name of the member.
        profile_photo_url:
          type: string
          description: The profile photo URL of the member.
        created_at:
          type: integer
          description: >-
            Time at which the object was created. Measured in seconds since the
            Unix epoch.
        links:
          type: object
          properties:
            pull_requests:
              type: string
              description: A reference to the pull-requests owned by this member.
          required:
            - pull_requests
      required:
        - id
        - name
        - profile_photo_url
        - created_at
        - links
      title: Member
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
  securitySchemes:
    http:
      type: http
      scheme: bearer

````