Request Format
HTTP Methods
Section titled “HTTP Methods”Noodle supports the standard HTTP methods: GET, POST, PUT, PATCH, DELETE, HEAD, and OPTIONS.
Headers
Section titled “Headers”headers: - key: Content-Type value: application/json enabled: true - key: Authorization value: Bearer {{token}} enabled: trueEach header has a key, value, and enabled flag. Disabled headers are preserved but not sent.
Query Parameters
Section titled “Query Parameters”params: - key: page value: "1" enabled: true - key: limit value: "50" enabled: trueBody Types
Section titled “Body Types”body_type: jsonbody: | { "name": "John", "email": "john@example.com" }URL-Encoded
Section titled “URL-Encoded”body_type: urlencodedform_data: - name: username value: johndoe enabled: trueMultipart
Section titled “Multipart”body_type: multipartform_data: - name: file value: ./photo.jpg enabled: true type: file - name: description value: Profile photo enabled: true type: textBinary
Section titled “Binary”body_type: binaryfile_path: ./image.pngTimeout & Redirects
Section titled “Timeout & Redirects”timeout: 5000followRedirects: truemaxRedirects: 10