How to fix this PC Raw JSON formula in the module?

Mmmk

Member
How to add the highlighted value into the Pabbly Connect Raw JSON existing formula?

This Pabbly formula (and desired amended update) relates to Plutio (PM SaaS) 'Projects' whereby it will update the Project Status (currently working) and add/update the 'Current Step' (highlighted in yellow), of which I am stuck with the correct JSON structure and insertion??
Screenshot 2024-04-27 at 6.22.33 AM.png
Screenshot 2024-04-27 at 6.26.09 AM.png
 

Mmmk

Member
1. [FluentForms #10 RFQ] > Airtable, Plutio & SalesFlare

55 >
 

Attachments

  • Screenshot 2024-04-27 at 11.14.08 AM.png
    Screenshot 2024-04-27 at 11.14.08 AM.png
    475.9 KB · Views: 105
P

Pabblymember11

Guest
Hey @Mmmk

In Plutio's Custom API request, you need to pass the custom fields and their value in an array as mentioned below.

{ "_id": "7TD9jYcDFBfKfmDcq", "customFields": [ { "_id": "Put the custom field's ID here", "value": [ "Put the custom field Value Here" ] } ] }
 

Mmmk

Member
Hey @Mmmk

In Plutio's Custom API request, you need to pass the custom fields and their value in an array as mentioned below.

{ "_id": "7TD9jYcDFBfKfmDcq", "customFields": [ { "_id": "Put the custom field's ID here", "value": [ "Put the custom field Value Here" ] } ] }
Thanks soooo much. Worked. Was so excited to try it out and was the first thing I did when I woke up!

Had no idea how to structure an array. Do you have a resource where I can better my learning with that kind of stuff?
 
P

Pabblymember11

Guest
Had no idea how to structure an array. Do you have a resource where I can better my learning with that kind of stuff?
Please refer to the instructional video provided below for guidance on using the API in Pabbly Connect. Then, follow the API documentation of the application to pass the API request to your action step as per the guidelines.


 
Top