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

# updateGLCodesHide



## OpenAPI

````yaml /mintlify/docs/openapi.yaml post /updateGLCodesHide
openapi: 3.0.1
info:
  title: EzzyRest API
  version: 1.0.0
servers:
  - url: https://app.ezzydoc.com/EzzyService.svc/Rest/
    description: Production Server
security: []
paths:
  /updateGLCodesHide:
    post:
      tags:
        - EzzyRest
      summary: updateGLCodesHide
      operationId: updateGLCodesHide
      parameters:
        - name: target
          in: query
          required: true
          schema:
            type: integer
            enum:
              - 0
              - 1
              - 2
              - 3
              - 4
              - 5
              - 6
              - 7
              - 8
              - 9
              - 10
              - 11
              - 12
              - 20
              - 21
              - 22
              - 23
              - 24
              - 26
              - 27
              - 33
              - 34
              - 35
              - 36
              - 37
              - 38
              - 39
              - 40
              - 41
              - 42
              - 43
              - 44
              - 45
              - 46
              - 47
              - 48
              - 49
              - 4001
              - -1
            x-enumNames:
              - HANDL
              - XERO
              - MYOB
              - SAASU
              - FTP
              - EMAIL
              - GATEWAY
              - NETSUITE
              - PALACE
              - QUICKBOOKS
              - CUSTOM_WORKFLOW
              - ACUREST
              - EZZYX
              - PLANTRACKER
              - PICA
              - EINVOICE
              - FERGUS
              - AIRTABLE_MYOB
              - ASCORA
              - SIMPRO
              - TIDYSTOCK
              - DEAR
              - SCORO
              - SAVE_AND_SEARCH
              - TRIUMPH
              - WORKGURU
              - WORKFLOWMAXBLUEROCK
              - GOOGLE_DRIVE
              - GMAIL
              - AIRTABLE
              - ONEDRIVE
              - O365
              - DROPBOX
              - STYCK
              - SERVICETITAN
              - PROCORE
              - SHAREPOINT
              - STORAGE_DEVICE
              - UNKNOWN
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/GLCodeHideUpdate'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/GLCodeHideUpdate'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/GLCodeHideUpdate'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Servicestatus'
            application/json:
              schema:
                $ref: '#/components/schemas/Servicestatus'
            text/json:
              schema:
                $ref: '#/components/schemas/Servicestatus'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    GLCodeHideUpdate:
      type: object
      properties:
        code:
          type: string
        hide:
          type: integer
    Servicestatus:
      type: object
      properties:
        invoice_id:
          type: integer
        message:
          type: string
        status:
          type: integer
          enum:
            - 0
            - 1
            - 2
            - 3
          x-enumNames:
            - OK
            - FAILED
            - NO_MORE_INVOICES
            - NOT_PERMITTED
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````