> ## 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.

# Retrieve a member

> Retrieves a Customer object for a valid identifier.



## OpenAPI

````yaml api-reference/api.json get /2025-04/members/{member}
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/{member}:
    get:
      tags:
        - Members
      summary: Retrieve a member
      description: Retrieves a Customer object for a valid identifier.
      operationId: v202504.members.show
      parameters:
        - name: member
          in: path
          required: true
          description: The unique identifier of the member.
          schema:
            type: string
      responses:
        '200':
          description: '`Member`'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Member'
                required:
                  - data
        '401':
          $ref: '#/components/responses/AuthenticationException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
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
    AuthorizationException:
      description: Authorization error
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
    ModelNotFoundException:
      description: Not found
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
  securitySchemes:
    http:
      type: http
      scheme: bearer

````