We use cookies to make HubSpot's community a better place. Cookies help to provide a more personalized experience and relevant advertising for you, and web analytics for us. To learn more, and to see a full list of cookies we use, check out our Cookie Policy (baked goods not included).
Nov 4, 2021
10:21 PM
- last edited on
Nov 5, 2021
12:29 PM
by
dennisedson
does anyone know what the format or inputs are for this:
--data '{ "inputs": [ "string" ] ????
curl --request POST \
--url 'https://api.hubapi.com/cms/v3/pages/site-pages/batch/read?hapikey=xxx' \
--header 'content-type: application/json' \
--data '{
"inputs": [
"string"
]
}'
Solved! Go to Solution.
Nov 5, 2021 12:35 PM
You would insert the ids of the pages in question.
{
"inputs": [
"52294274345",
"52220902567"
]
}
eg
![]() | Make sure to subscribe to our YouTube channel where you can find the HubSpot Community Developer Show |
Nov 5, 2021 1:39 PM
very cool will check it out!
Nov 5, 2021 12:35 PM
You would insert the ids of the pages in question.
{
"inputs": [
"52294274345",
"52220902567"
]
}
eg
![]() | Make sure to subscribe to our YouTube channel where you can find the HubSpot Community Developer Show |