Podio API Documentation
App market: Install share
Installs the share with the given id on the space.
Usage
- PHP Client
-
PodioAppMarketShare.php
PodioAppMarketShare::install( $share_id, $attributes = array() );
- Ruby Gem
-
app_store_share.rb
Podio::AppStoreShare.install( share_id, space_id, dependencies, social = true )
Parameters
- share_id*
- Required.
Request
{
"space_id": The id of the space the shared app should be installed to,
"dependencies": The list of ids of the dependent shares that should also be installed. If not specified, all dependencies will be installed
}
Response
{
"app_id": The id of the newly installed app (only present on app installs),
"child_app_ids": The list of ids of the dependant apps that was also installed,
[
"{app_id}",
... (more app ids)
]
}