Skip to contents

List all available KoboToolbox API assets and their metadata.

Usage

kobo_asset_list(limit = 100L)

Arguments

limit

integer, the number of API assets to display per page. Default to 100.

Value

A data.frame containing the list of all your KoboToolbox API assets and the following metadata:

  • uid the asset unique identifier

  • name the name of the asset

  • asset_type the type of asset (block, survey, question, or template)

  • owner_userame the user account of the owner of the asset

  • date_create when the asset was created

  • date_modified when the asset was last modified

  • deployed whether or not the asset is currently deployed

  • submissions the number of submissions for the asset (survey)

Examples

if (FALSE) {
kobo_setup()
asset_list <- kobo_asset_list(limit = 10L)
asset_list
}