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

# Set Member Suspend Status



## OpenAPI

````yaml post /members/set_suspend
openapi: 3.0.1
info:
  title: SchoolMaker API V1
  description: API for managing your SchoolMaker school
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://schoolmaker.co/api/v1
    description: Production API
security:
  - bearerAuth: []
paths:
  /members/set_suspend:
    post:
      summary: Set Member Suspend Status
      parameters:
        - name: id
          in: query
          schema:
            type: string
        - name: email
          in: query
          schema:
            type: string
        - name: suspend
          in: query
          required: true
          schema:
            type: string
            default: 'false'
      responses:
        '200':
          description: Member details
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Unique identifier of the member
                  email:
                    type: string
                    description: Email address of the member
                  first_name:
                    type: string
                    description: First name of the member
                  last_name:
                    type: string
                    description: Last name of the member
                  last_seen_at:
                    type: string
                    format: date-time
                    description: Timestamp when the member was last seen
                  created_at:
                    type: string
                    format: date-time
                    description: Timestamp when the member was created
                  updated_at:
                    type: string
                    format: date-time
                    description: Timestamp when the member was last updated
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````