Limit on API Request Parameters

Hello, I need to send data for 23 fields, but I can only add 18 parameters in the POST API request. The rest of the params are not visible, and I can’t scroll down to see or edit them.

When I check the button circuit in the respective screen, the parameters appear as param, param1, param2, and so on. However, when I send information via the API, only the data for the first 18 fields are sent to the datasheet.

Is there a limit on the number of parameters that can be added to an API request in Nowa? If not, how can I fix this issue and ensure that data for all 23 fields is sent without any problems?

Hey @Shrut_Patel So in this case you can create an object that contains that 23 parameters, and only create one parameter of that object type, and then inside the API panel, access the fields from inside the object by:

  1. Type the $
  2. Choose the parameter you created as an object
  3. You can then choose one of the parameters
1 Like

@anas thank you for assistance, this worked!

2 Likes