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

# getKeywordValueFromText



## OpenAPI

````yaml /mintlify/docs/openapi.yaml post /getKeywordValueFromText
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:
  /getKeywordValueFromText:
    post:
      tags:
        - EzzyRest
      summary: getKeywordValueFromText
      operationId: getKeywordValueFromText
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractKeywordValueRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/ExtractKeywordValueRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/ExtractKeywordValueRequest'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ExtractKeywordValueSS'
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractKeywordValueSS'
            text/json:
              schema:
                $ref: '#/components/schemas/ExtractKeywordValueSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    ExtractKeywordValueRequest:
      type: object
      properties:
        Content:
          type: string
        keyword:
          type: string
    ExtractKeywordValueSS:
      type: object
      properties:
        result:
          type: string
        service_status:
          $ref: '#/components/schemas/Servicestatus'
    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

````