• 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

Stripe

Status
Not open for further replies.
To add multiple line items for Price ID, Quantity, Adjustable Quantity in Create a Payment Link action then follow the steps given below -

1. Hover on the top right of After Completion Redirect field.
2. Click on the "+" button as shown below -

image (7).png


3. For multiple line Items the indexing will change as per line item for e.g. suppose if there are two product then for first product lindexing will be zero, for second product indexing will be 1.

1. line_items[0][price] ===> Indicates the ID of the Price or Plan object for first product
2. line_items[0][quantity] ===> Indicates quantity of the line item being purchased for first product
3. line_items[0][adjustable_quantity][enabled] ===> Indicates configuration for this item’s quantity to be adjusted by the customer during checkout.
4. line_items[0][adjustable_quantity][minimum] ===> Indicates the minimum quantity the customer can purchase. By default this value is 0. You can specify a value up to 98. If there is only one item in the cart then that item’s quantity cannot go down to 0.
5. line_items[0][adjustable_quantity][maximum] ===> Indicates the maximum quantity the customer can purchase. By default this value is 99. You can specify a value up to 99.

Similary you can change indexing as 1 for second product line item.
1. line_items[1][price]
2. line_items[1][quantity]
3. line_items[1][adjustable_quantity][enabled]
4. line_items[1][adjustable_quantity][minimum]
5. line_items[1][adjustable_quantity][maximum]

4. MetaData: For Metadata, provide a key as shown in example below -
E.g. metadata[payment_link_createdby]

Final Request will look something like this

1666857360169.png
 

Attachments

  • 1666857197005.png
    1666857197005.png
    205.2 KB · Views: 99
Last edited:

Pabbly

Administrator
Staff member
Create an Invoice in Stripe
To add multiple custom fields, metadata & discount coupons in Create an Invoice action follow the steps given below -

1. Hover on the top right of Statement Descriptor field.
2. Click on the "+" button as shown below -


1676978287470.png



3. Custom Fields: For Custom Fields there will be two keys one for the name and another one for the value as shown in the example below
  • custom_fields[0][name]
  • custom_fields[0][value]

4. MetaData: For Metadata, provide a key as shown in example below -
Eg: metadata[invoice_createdby]

5. Discount Coupons
To provide multiple discount Coupons provide key as shown in example below
Eg: discounts[0][coupon] ----> This will be your first coupon
Eg: discounts[1][coupon] ----> This will be your 2nd Coupon
Provide the coupon ID in the value section of the field.

6. Shipping Details
To provide shipping details provide key as shown in example below

shipping_details[name]=fit
shipping_details[phone]=919876543219
shipping_details[address][city]=bhopal
shipping_details[address][country]=india
shipping_details[address][line1]=123
shipping_details[address][line2]=ertt
shipping_details[address][postal_code]=462021
shipping_details[address][state]=mp

Please have a look at image given below -

1676978301062.png


stripe2.png
 
Last edited by a moderator:
Status
Not open for further replies.
Top