• 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

Podio

Podio Create Item

Different Template fields requires different format to pass data inside Create item action.
Note: Image and Calculation field is not supported so leave them blank.

Below are details how pass data in different supported fields.


1. For Field Type = Text
Pass value in this format e.g.:

{
"value": "Headline"
}


2. For Field Type = Date
Pass value in this format e.g.:

{
"end_utc": "2022-01-28 18:30:00",
"start_utc": "2022-01-27 18:30:00"
}


3. For Field Type = Relationship
Pass value in this format e.g.: Pass IDs of related relations inside array in comma separated format

[
2358756000,
2358736752,
2358735225
]


4. For Field Type = Phone
Pass value in this format e.g.: Pass array of objects with type(home, main, mobile, other, private_fax, work, work_fax) and value

[
{
"type": "home",
"value": "9876543210"
},
{
"type": "main",
"value": "9876543210"
}
]


5. For Field Type = Email
Pass value in this format e.g.: Pass array of objects with type(home, main, mobile, other, private_fax, work, work_fax) and value

[
{
"type": "home",
"value": "[email protected]"
},
{
"type": "home",
"value": "[email protected]"
}
]


6. For Field Type = Number
Pass value in this format e.g.:

{
"value": 100
}


7. For Field Type = Link
Pass Value in this format e.g.: Pass array of objects

[
{
"url": "https://www.podio.com"
},
{
"url": "https://pabbly.com"
}
]


8. For Field Type = Money
Pass Value in this format e.g.:

{
"value": "12345",
"currency": "USD"
}


9. For Field Type = Progress
Pass Value in this format e.g.:

{
"value": 100
}


10. For Field Type = Location
Pass Value in this format e.g.:

{
"value": "Bhopal"
}


11. For Field Type = Duration
Pass Value in this format e.g.:

{
"value": 25
}


11. For Field Type = Category (Multiple Choice)

Pass Value in this format e.g.:
[
{
"value": 1
},
{
"value": 2
},
{
"value": 3
}
]
 
Last edited:
Top