Parameters

This section is where you design the data structure for information being sent to your API, which is essential for POST, PUT, and PATCH requests. It defines the "contract" for the data structure that the API expects to receive.

parameters

Core Functionalities

1. Design with JSON Editor

Design and Define with JSON Editor: You start by using a built-in editor to construct or paste a raw JSON object. The system then intelligently parses this JSON and automatically transforms it into a structured list of individual field records.

2. Document Each Field

For each record generated from a JSON field, you can add a human-readable description. This allows you to document the purpose of every single field within your payload. This structured data, complete with descriptions, is then saved as a set of records, not as a raw JSON file.

3. Generate FE & BE Code Models

This is the most powerful aspect. Based on the final, documented record structure, the system generates ready-to-use code models. This guarantees that the data object the frontend sends is in the exact format the backend expects, eliminating a common source of integration errors.