• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

PerfexCRM

This thread will show you how to add custom fields and lineitems inside PerfexCRM Add Proposal action.

1. Hover on the top right of Total field.
2. Click on the "+" button as shown in the image below -

image (6).png


3. After clicking on + plus button you will see label and value field as shown in the image below.

2022-10-12_17h48_08.png


4. To get Custom Fields keys and its options please have look at Get Proposal Custom Field action.

5. Map the corresponding custom field key and its value in the label and value field respectively as shown in the image below.

2022-10-12_17h50_56.png



6. For multiselect datatype custom fields you need to follow array key index as shown in the example below:

Suppose if multiselect custom fields has three options namely opt1,opt2,opt3 then custom field key index will change based on options.
e.g. For opt1 the key will be ==> custom_fields[proposal][41][0] thus here you need to pass index [0] after custom_fields[proposal][41] for first option.
e.g. For opt2 the key will be ==> custom_fields[proposal][41][1] thus here you need to pass index [1] after custom_fields[proposal][41] for second option.
e.g. For opt3 the key will be ==> custom_fields[proposal][41][2] thus here you need to pass index [2] after custom_fields[proposal][41] for third option.


7. You can add line items inside Add Proposal action with these properties (order,description,long_description,qty,rate). Suppose if you want to add two line items inside Add Proposal action then every line item property will be send with this prefix newitems[] where array [] indexing will change as per line item

For first line item labels will be ( newitems[1][order], newitems[1][description], newitems[1][long_description], newitems[1][qty], newitems[1][rate] ) please have look attached image below:

2022-10-12_18h03_53.png


For second line item labels will be ( newitems[2][order], newitems[2][description], newitems[2][long_description], newitems[2][qty], newitems[2][rate] ) please have look attached image below:

2022-10-12_18h05_18.png



8. Full fields will look something like this.

1665578245176.png
 
Top