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

Status: Open · Asked by Mathew Kulkewycz on · 0 views

Mmmk — Question ·

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??

Arshil Ahmad — Reply ·

Hi @Mmmk,

Could you please share the Workflow URL in which you have this concern?

Mmmk — Reply ·

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

55 >

Attachments

Screenshot 2024-04-27 at 11.14.08 AM.png
Pabblymember11 — Reply ·

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 — Reply ·
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?

Pabblymember11 — Reply ·
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.

youtube.com/watch?v=xYC5mTobFfc

youtube.com/watch?v=bmf4och_kTk

Back to all forum threads · Log in to reply