404 Not Found


nginx
beegazpacho.com - GrazzMean
Uname: Linux in-mum-web1557.main-hosting.eu 5.14.0-611.42.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 24 05:30:20 EDT 2026 x86_64
Software: LiteSpeed
PHP version: 8.2.30 [ PHP INFO ] PHP os: Linux
Server Ip: 91.108.106.96
Your Ip: 216.73.216.168
User: u848900432 (848900432) | Group: o51372345 (1051372345)
Safe Mode: OFF
Disable Function:
NONE

name : gentest2.yaml
swagger: '2.0'
info:
  title: code generation test fixture for parameters, with default values
  version: '1.0.0'
host: localhost
basePath: /
consumes:
  - application/json
produces:
  - application/json
schemes:
  - http
paths:
  /required/params:
    get:
      operationId: getRequired
      parameters:
      - name: notAnOption1
        in: query
        type: string
        format: date
        required: true
      - name: notAnOption2
        in: query
        type: string
        format: password
        pattern: '^[a-z]$'
        required: true
      - name: notAnOption3
        in: query
        type: integer
        format: int32
        required: true
      - name: notAnOption4
        in: query
        type: integer
        format: int32
        required: true
        minimum: 10
        maximum: 100
        multipleOf: 10
      - name: notAnOption5
        in: query
        type: array
        required: true
        maxItems: 2
        items:
          type: string
          format: uuid
      - name: notAnOption6
        in: query
        type: array
        collectionFormat: pipes
        required: true
        uniqueItems: true
        items:
          type: integer
          format: int32
          minimum: 10
          maximum: 100
          multipleOf: 10
      - name: notAnOption7
        in: query
        type: array
        collectionFormat: pipes
        required: true
        uniqueItems: false
        items:
          type: array
          collectionFormat: csv
          uniqueItems: true
          items:
            type: string
            format: date
      responses: &stdResponses
        200:
          description: simple type
          schema:
            type: string
            format: date
        201:
          description: simple type
          schema:
            type: string
            format: uuid
        default:
          description: schema type
          schema:
            $ref: '#/definitions/ContainerConfig'
  /optional/params:
    get:
      operationId: getOptional
      parameters:
      - name: sanityCheck1
        in: query
        type: string
        required: false
        default: sanity check one passed for primitive type
      - name: sanityCheck2
        in: query
        type: number
        required: false
        default: 99.9
      - name: sanityCheck3
        in: query
        type: integer
        required: false
        default: 1000
      - name: sanityCheck4
        in: query
        type: integer
        format: uint32
        required: false
        default: 100
      - name: sanityCheckFormat1
        in: query
        type: string
        format: uuid
        required: false
        default: a8098c1a-f86e-11da-bd1a-00112444be1e
      - name: isAnOption1
        in: query
        type: string
        format: date
        required: false
        default: '1970-01-01'
      - name: isAnOption2
        in: query
        type: string
        format: password
        pattern: '^[a-z]$'
        required: false
        default: z
      - name: isAnOption3
        in: query
        type: integer
        format: int32
        required: false
        default: 32
      - name: isAnOption4
        in: query
        type: integer
        format: int32
        required: false
        minimum: 10
        maximum: 100
        multipleOf: 10
        default: 60
      - name: isAnOption5
        in: query
        type: array
        maxItems: 2
        items:
          type: string
          format: uuid
        default:
        - a8098c1a-f86e-11da-bd1a-00112444be1e
      - name: isAnOption6
        in: query
        type: array
        collectionFormat: pipes
        required: false
        items:
          type: integer
          format: int32
          minimum: 10
          maximum: 100
          multipleOf: 10
        default:
        - 10
        - 20
        - 30
        - 40
      - name: isAnOption7
        in: query
        type: array
        collectionFormat: pipes
        required: false
        items:
          type: array
          collectionFormat: csv
          items:
            type: string
            format: date
          default:
          - '2018-01-01'
          - '2018-01-02'
          - '2018-01-03'
          - '2018-01-04'
        default:
        -
          - '2012-01-01'
          - '2014-01-02'
          - '2016-01-03'
          - '2018-01-04'
        -
          - '2011-01-01'
          - '2013-01-02'
          - '2015-01-03'
          - '2017-01-04'
      - name: isAnOption8
        in: query
        type: array
        maxItems: 2
        uniqueItems: true
        items:
          type: string
        default:
        - default unformatted string array item 1
        - default unformatted string array item 2
      - name: isAnOption9
        in: query
        type: array
        collectionFormat: pipes
        required: false
        items:
          type: array
          collectionFormat: csv
          items:
            type: string
            format: duration
          default:
          - 1d
          - 1w
          - 1h
          - 2w
        default:
        -
          - 1s
          - 1h
          - 1d
          - 1w
        -
          - 2s
          - 2h
          - 2d
          - 2w
      responses: *stdResponses
  /path/params/{notAnOption1}/{notAnOption2}/{notAnOption3}/{notAnOption4}/{notAnOption5}/{notAnOption6}/{notAnOption7}:
    get:
      operationId: getRequiredInPath
      parameters:
      - name: notAnOption1
        in: path
        type: string
        format: date
        required: true
      - name: notAnOption2
        in: path
        type: string
        format: password
        pattern: '^[a-z]$'
        required: true
      - name: notAnOption3
        in: path
        type: integer
        format: int32
        required: true
      - name: notAnOption4
        in: path
        type: integer
        format: int32
        required: true
        minimum: 10
        maximum: 100
        multipleOf: 10
      - name: notAnOption5
        in: path
        type: array
        maxItems: 2
        required: true
        items:
          type: string
          format: uuid
      - name: notAnOption6
        in: path
        type: array
        collectionFormat: pipes
        required: true
        items:
          type: integer
          format: int32
          minimum: 10
          maximum: 100
          multipleOf: 10
      - name: notAnOption7
        in: path
        type: array
        collectionFormat: pipes
        required: true
        items:
          type: array
          collectionFormat: csv
          items:
            type: string
            format: date
      responses: *stdResponses
  /optional/headers:
    get:
      operationId: getInHeaders
      parameters:
      - name: isAnOption1
        in: header
        type: string
        format: date
        required: false
        default: '1970-01-01'
      - name: isAnOption2
        in: header
        type: string
        format: password
        pattern: '^[a-z]$'
        required: false
        default: z
      - name: isAnOption3
        in: header
        type: integer
        format: int32
        required: false
        default: 32
      - name: isAnOption4
        in: header
        type: integer
        format: int32
        required: false
        minimum: 10
        maximum: 100
        multipleOf: 10
        default: 60
      - name: isAnOption5
        in: header
        type: array
        maxItems: 2
        items:
          type: string
          format: uuid
        default:
        - a8098c1a-f86e-11da-bd1a-00112444be1e
      - name: isAnOption6
        in: header
        type: array
        collectionFormat: pipes
        required: false
        items:
          type: integer
          format: int32
          minimum: 10
          maximum: 100
          multipleOf: 10
        default:
        - 10
        - 20
        - 30
        - 40
      - name: isAnOption7
        in: header
        type: array
        collectionFormat: pipes
        required: false
        items:
          type: array
          collectionFormat: csv
          items:
            type: string
            format: date
          default:
          - '2018-01-01'
          - '2018-01-02'
          - '2018-01-03'
          - '2018-01-04'
        default:
        -
          - '2012-01-01'
          - '2014-01-02'
          - '2016-01-03'
          - '2018-01-04'
        -
          - '2011-01-01'
          - '2013-01-02'
          - '2015-01-03'
          - '2017-01-04'
      responses: *stdResponses
  /mixed/deepnested:
    get:
      operationId: getInDepth
      parameters:
      - name: deepNested1
        in: query
        type: array
        collectionFormat: pipes
        required: true
        maxItems: 2
        items:
          type: array
          collectionFormat: csv
          minItems: 2
          items:
            type: array
            collectionFormat: ssv
            uniqueItems: true
            items:
              type: string
              pattern: '^[a-z]$'
            default:
            - a
            - b
            - c
          default:
          -
            - x
            - 'y'
            - z
          -
            - u
            - v
            - w
        default:
        -
          -
            - h
            - i
            - j
          -
            - k
            - l
            - m
        -
          -
            - h
            - i
            - j
          -
            - k
            - l
            - m
      - name: deepNested2
        in: header
        type: array
        collectionFormat: pipes
        required: false
        maxItems: 2
        items:
          type: array
          collectionFormat: csv
          minItems: 2
          items:
            type: array
            collectionFormat: ssv
            uniqueItems: true
            items:
              type: string
              pattern: '^[a-z]$'
            default:
            - a
            - b
            - c
          default:
          -
            - x
            - 'y'
            - z
          -
            - u
            - v
            - w
        default:
        -
          -
            - h
            - i
            - j
          -
            - k
            - l
            - m
        -
          -
            - h
            - i
            - j
          -
            - k
            - l
            - m
      responses: *stdResponses
  /mixed/mixedBody/{pathParam1}:
    post:
      operationId: getInBody
      parameters:
      - name: bodyBuilding
        in: body
        schema:
          $ref: '#/definitions/ContainerConfig'
      - name: queryParam1
        in: query
        type: integer
        required: false
        allowEmptyValue: true
        default: 100
        maximum: 1000
      - name: queryParam2
        in: query
        type: string
        format: date
        required: false
        default: '1970-01-01'
      - name: queryParam3
        in: query
        type: integer 
        format: uint32
        minimum: 12
        exclusiveMinimum: true
        allowEmptyValue: true
        required: true
      - name: queryParam4
        in: query
        collectionFormat: multi
        maxItems: 2
        type: array
        items:
          type: string
          format: uuid
        default:
        - a8098c1a-f86e-11da-bd1a-00112444be1e
        - a8098c1a-f86e-11da-bd1a-00112444be1e
      - name: query_issue_863
        in: query
        type: array
        items:
          type: string
          enum:
          - enum1
          - enum2
          - enum3
      - name: pathParam1
        in: path
        type: string
        pattern: '^\w+$'
        required: true
      - name: headerParam1
        in: header
        type: array
        items:
          type: number
        default:
        - 1.1
        - 2.75
        required: false
      responses: *stdResponses

  /mixed/mixedBody2/{pathParam1}:
    post:
      operationId: getInBody2
      parameters:
      - name: bodyBuilding
        in: body
        required: true
        schema:
          $ref: '#/definitions/errorResponseMsg'
      - name: queryParam1
        in: query
        type: integer
        required: false
        allowEmptyValue: true
        default: 100
        maximum: 1000
      - name: queryParam2
        in: query
        type: string
        format: date
        required: true
        default: '1970-01-01'
      - name: queryParam3
        in: query
        type: integer 
        format: uint32
        minimum: 12
        exclusiveMinimum: true
        allowEmptyValue: true
        required: true
      - name: queryParam4
        in: query
        collectionFormat: multi
        maxItems: 2
        type: array
        items:
          type: string
          format: uuid
        default:
        - a8098c1a-f86e-11da-bd1a-00112444be1e
      - name: pathParam1
        in: path
        type: string
        pattern: '^\w+$'
        required: true
      - name: headerParam1
        in: header
        type: array
        items:
          type: number
        default:
        - 1.1
        - 2.75
        required: false
      responses: *stdResponses

  /mixed/mixedBody3/{pathParam1}:
    post:
      operationId: getInBody3
      parameters:
      - name: bodyBuilding
        in: body
        required: false
        schema:
          $ref: '#/definitions/errorResponseMsg'
      - name: queryParam1
        in: query
        type: integer
        required: false
        allowEmptyValue: true
        default: 100
        maximum: 1000
      - name: queryParam2
        in: query
        type: string
        format: date
        required: true
        default: '1970-01-01'
      - name: queryParam3
        in: query
        type: integer 
        format: uint32
        minimum: 12
        exclusiveMinimum: true
        allowEmptyValue: true
        required: true
      - name: queryParam4
        in: query
        collectionFormat: multi
        maxItems: 2
        type: array
        items:
          type: string
          format: uuid
        default:
        - a8098c1a-f86e-11da-bd1a-00112444be1e
      - name: pathParam1
        in: path
        type: string
        pattern: '^\w+$'
        required: true
      - name: headerParam1
        in: header
        type: array
        items:
          type: number
        default:
        - 1.1
        - 2.75
        required: false
      responses: *stdResponses
  /form/{pathParam1}:
    post:
      operationId: getInForm
      consumes:
      - multipart/formData
      parameters:
      - name: pathParam1
        in: path
        type: string
        maxLength: 10
        required: true
      - name: docname
        in: formData
        type: string
        pattern: '^\w+\.doc$'
        required: true
      - name: docAuthor
        in: formData
        type: string
      - name: attachment
        in: formData
        type: file
        required: true
      - name: addendum
        in: formData
        type: file
        required: false
      responses: *stdResponses

definitions:
  ContainerConfig:
    type: object
    required: [config1]
    properties:
      config1:
        type: string
        format: date
      config2:
        type: string
        format: date
        default: '1999-09-09'
    default:
      config1: '2019-09-09'
      config2: '2018-09-09'
  errorResponseMsg:
    type: object 
    required: [ errorCode, reason ]
    properties:
      errorCode:
        type: integer
      reason:
        type: string
      severity:
        type: string
        enum: [ FATAL, CRITICAL, ERROR, WARNING, INFO ]
      additional:
        type: string
        enum: [ FATAL, CRITICAL, ERROR, WARNING, INFO ]
        default: INFO
    default:
      errorCode: 501
      reason: not implemented
      severity: FATAL
© 2026 GrazzMean
Beegazpacho


Let’s  Start  Your  Online  Journey  with  Beegazpacho 

Welcome to Beegazpacho,
where creativity meets strategy,
and innovation drives success.


Contact
Now


OUR CLIENTS

WhatsApp-Image-2021-12-06.png
Untitled-design-11.png
niaf-logo.png
20220406-163308-scaled.jpg
karchi-logo.png
20220405-171252.png
20220405-171309.png
20220321-161603.png
20220321-161611.png
20220321-161628.png
20220321-161244.png
20220321-161256.png
20220321-161450.png
20220321-161205.png
20220226-170222.png
20220321-161051.png
20211202-170852.png
Untitled-design-9
pidilite-png-logo-colour
logo-black-e1706125740216-qisosldqhzgcaerhdt6n4t3m4s50jr0iik48z0h5vk
Fraikin-Dayim-logo-1
hpcl-logo-2-1
services

Transforming Ideas into
Success

.01
Digital Marketing

We drive growth through data-driven strategies and cutting-edge techniques.

Learn More

.02
SEO

Improve your online visibility and rank higher on search engines with our expert SEO services.

Learn More

.03
Website Designing

We design websites that are not only visually stunning but also user-centric, ensuring seamless navigation and enhanced user experience.

Learn More

.04
App Development

Our apps are crafted to be intuitive, engaging, and functional, providing your users with an exceptional mobile experience.

Learn More

.05
Social Media Ads

Target the right audience with precision and creativity to maximize engagement and conversions.

Learn More

.06
Google Ads

Maximize ROI with precision-targeted campaigns on Google’s powerful ad platform.

Learn More

.07
Google My Business

Optimize your local presence with strategies that put your business on the map and attract more customers.

Learn More

.08
Graphic Designing

Our designs tell your brand’s story in a visually compelling way.

Learn More

.09
3D Videos

Bring your product to life with immersive and dynamic 3D explainer videos.

Learn More

about BEEGAZPACHO

creating special Things
For special brands

Join the ranks of successful brands by partnering with Beegazpacho

00+

Happy Customer

00+

Continents

Our vision is not just to be a service provider but to be your partner in growth. We see ourselves as an extension of your team, working tirelessly to ensure that your brand not only meets its goals but surpasses them.

Explore
more

Our Recent Work

Crafted with Passion and Precision

Connect now


Web Design
Design, Development & Identity

Logo Design
Design, Development & Identity

Creative Brand design
Design, Development & Identity

Product Design Marketing
Design, Development & Identity

DIGITAL MARKETING
SEO
WEBSITE DESIGNING
APP DEVELOPMENT
SOCIAL MEDIA ADS
GOOGLE ADS
GOOGLE MY BUSINESS
GRAPHIC DESINING
3D VIDEOS
Client Stories

Hear It from Those Who Know Us Best

Our clients’ success stories speak volumes about our commitment to excellence. Don’t just take our word for it—hear directly from the brands we’ve partnered with. Their testimonials highlight our ability to bring visions to life and create a lasting impact on their businesses.

“Beegazpacho feels like an extension of our team. Their content marketing and social media expertise have elevated our brand. They listen, adapt, and always deliver on time. We look forward to continuing this partnership.”

— Sarah Williams

Head of Marketing, GreenPlanet Apparel

“Beegazpacho’s data-driven strategies helped us improve our online ads, optimize our website, and enhance branding. We’ve seen great ROI and increased visibility. Their professionalism is unmatched.”

— Arvind Shah

CEO, InnovateTech Solutions

“Partnering with Beegazpacho has been a game-changer for our brand. Their creative ad campaigns and SEO services have boosted our online presence and significantly increased leads and sales. We couldn’t ask for a better partner!”

— Rina Kapoor

Marketing Director, Luxury Home Interiors

“Beegazpacho feels like an extension of our team. Their content marketing and social media expertise have elevated our brand. They listen, adapt, and always deliver on time. We look forward to continuing this partnership.”

— Sarah Williams

Head of Marketing, GreenPlanet Apparel

“Beegazpacho’s data-driven strategies helped us improve our online ads, optimize our website, and enhance branding. We’ve seen great ROI and increased visibility. Their professionalism is unmatched.”

— Arvind Shah

CEO, InnovateTech Solutions

“Partnering with Beegazpacho has been a game-changer for our brand. Their creative ad campaigns and SEO services have boosted our online presence and significantly increased leads and sales. We couldn’t ask for a better partner!”

— Rina Kapoor

Marketing Director, Luxury Home Interiors