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

# Returns information about a specific member



## OpenAPI

````yaml openapi/member-v1.json GET /v1/members/{memberId}
openapi: 3.0.4
info:
  title: MemberService.Api
  version: v1
servers:
  - url: https://{host}/member
    description: Your Lobyco environment
    variables:
      host:
        default: your-environment.lobyco.net
        description: >-
          The API host for your Lobyco environment. Replace it with the host you
          were given — this placeholder does not resolve.
security:
  - Bearer: []
paths:
  /v1/members/{memberId}:
    get:
      tags:
        - Service2Service
      summary: Returns information about a specific member
      parameters:
        - name: memberId
          in: path
          description: Member ID
          required: true
          schema:
            maxLength: 36
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/MemberService.Api.Controllers.Service2Service.MemberController.GetMemberResponse
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/LoopFoundation.Commons.Contracts.WebServiceError
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/LoopFoundation.Commons.Contracts.WebServiceError
components:
  schemas:
    MemberService.Api.Controllers.Service2Service.MemberController.GetMemberResponse:
      type: object
      properties:
        memberId:
          type: string
          description: Member ID
          nullable: true
        birthdate:
          type: string
          description: Member's date of birth
          format: date-time
          nullable: true
        firstName:
          type: string
          description: Member's first name
          nullable: true
        lastName:
          type: string
          description: Member's last name
          nullable: true
        genderId:
          $ref: '#/components/schemas/MemberService.Domain.Entities.Gender'
        genderDisplayName:
          type: string
          description: Localized display name for the member's gender
          nullable: true
        email:
          type: string
          description: Member's email address
          nullable: true
        phone:
          type: string
          description: Member's phone number
          nullable: true
        selectedStoreId:
          type: string
          description: ID of the member's selected store
          nullable: true
        cooperatives:
          type: array
          items:
            type: string
          description: List of cooperatives the member belongs to
          nullable: true
        address:
          $ref: '#/components/schemas/MemberService.Api.Controllers.DTOs.AddressDto'
        metadata:
          type: object
          additionalProperties:
            type: string
            nullable: true
          description: Additional metadata associated with the member
          nullable: true
        loyaltyProgram:
          type: string
          description: Loyalty program or tier (e.g., Silver, Gold, Freemium)
          nullable: true
        isEmployee:
          type: boolean
          description: Indicates whether the member is an employee
        nationality:
          type: string
          description: Member's nationality
          nullable: true
        deceased:
          type: boolean
          description: Indicates whether the member is deceased
          nullable: true
        homeTelephone:
          type: string
          description: Member's home telephone number
          nullable: true
        isMembershipFeePaid:
          type: boolean
          description: Indicates whether the membership fee has been paid
          nullable: true
        isActive:
          type: boolean
          description: Indicates whether the member account is active
        isDeleted:
          type: boolean
          description: Indicates whether the member account has been deleted
        personalId:
          type: string
          description: Personal identification number (used for employee bonuses feature)
          nullable: true
        createdAt:
          type: string
          description: Date and time when the member was created
          format: date-time
        customProperties:
          type: array
          items:
            $ref: >-
              #/components/schemas/MemberService.Api.Controllers.DTOs.CustomPropertyValue
          description: Custom typed properties registered via the property definitions API
          nullable: true
      additionalProperties: false
    LoopFoundation.Commons.Contracts.WebServiceError:
      required:
        - message
        - name
      type: object
      properties:
        name:
          minLength: 1
          type: string
        message:
          minLength: 1
          type: string
        details:
          nullable: true
      additionalProperties: false
    MemberService.Domain.Entities.Gender:
      enum:
        - NotSelected
        - Male
        - Female
        - NotProvided
      type: string
    MemberService.Api.Controllers.DTOs.AddressDto:
      type: object
      properties:
        zipCode:
          maxLength: 8
          type: string
          description: Postal code of the member's address
          nullable: true
        city:
          maxLength: 32
          type: string
          description: City where the member lives
          nullable: true
        addressLine1:
          maxLength: 128
          type: string
          description: Street name and street number
          nullable: true
        addressLine2:
          maxLength: 64
          type: string
          description: Apartment number
          nullable: true
        region:
          maxLength: 32
          type: string
          description: Region where the member lives
          nullable: true
        countryCode:
          maxLength: 2
          type: string
          description: Code of country where the member lives
          nullable: true
      additionalProperties: false
    MemberService.Api.Controllers.DTOs.CustomPropertyValue:
      type: object
      properties:
        name:
          type: string
          nullable: true
        displayName:
          type: string
          nullable: true
        value:
          nullable: true
        type:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        JWT Authorization header using the Bearer scheme. Example:
        "Authorization: Bearer {token}"
      name: Authorization
      in: header

````