Posting JSON with API Action

Thank you!
Could you please help me?
How can I make such post request (using input field) in API Action:

{
“fields”: {
“Name”: {
“stringValue”: “Pancakes”
},
“Description”: {
“stringValue”: “Enjoy our great pancakes”
}
}
}

1 Like

Take a look at this. Might help: Send nested JSON with server-side API

Thank you!

1 Like

My POST API expects the body as below:
{
“username”:“vbotestuser1”,
“Password”:“vbotestuser1”,
“RememberMe”:false,
“user_ip”:“115.248.118.242”
}
how do i post this with Api Action.
Please help me out how to construct the input data.
i have done it as shown in below image.