Podio API Documentation

App market: Get own shares

GET /app_store/{type}/own/

Returns all the apps that the active user has shared.

Usage
Ruby Gem
app_store_share.rb
Podio::AppStoreShare.find_all_own( options = {} )
Parameters
type*
Required.
limit

The maximum number of results to return


Default value: 6
offset

The offset into the returned results


Default value: 0
type

The type of shares to return, either "app" or "pack", leave out for all shares

Response { "total": The total number of shares, "shares": The shares matching the offset and limit [ { "share_id": The id of the share, "type": The type of share, either "app" or "pack", "status": The status of the share, either "review", "accepted" or "rejected", "parents": The parents of the share,     [ {       "share_id": The id of the parent share,       ....     } ... (more parents), ],     "children": The children of the share,     [       {         "share_id": The id of the child share,         ....      },     ... (more children)     ], "name": The name of the app, "description": The description of the app, "language": The language of the app, "featured": True if the app is featured, false otherwise, "features": The list of features for this share, can be "widgets", "tasks" and "filters", [ "{feature}", ... (more features) ], "categories": The categories the app is in, { "{type}": The type of category, [ { "category_id": The id of the category, "name": The untranslated name of the category }, ... (more categories) ], ... (more types) }, "author": The user who created the app { "user_id": The id of the user, "avatar": The file id of the avatar of the user, "name": The full name of the user }, "author_apps": The number of apps the author has shared, "author_packs": The number of packs the author has shared, "shared_on": When the share was shared, "icon": The icon associated with the app, "installs": The number of times the app has been installed, "rating": The average rating of the app, "screenshots": The screenshots of the app, [ { "file_id": The id of the file for the screenshot, ... (see the file area for details) }, ... (more files) ] }, ... (more apps) ] }

Sandbox

Try the operation "/app_store/{type}/own/"

You can simulate the API request by filling out the arguments below, and press the submit button to see the response.

You need to be logged in to Podio to use the Sandbox. Login here