get_content {connectapi}R Documentation

Get information about content on the Posit Connect server

Description

Get information about content on the Posit Connect server

Usage

get_content(src, guid = NULL, owner_guid = NULL, name = NULL, ..., .p = NULL)

Arguments

src

A Connect object

guid

The guid for a particular content item

owner_guid

The unique identifier of the user who owns the content

name

The content name specified when the content was created

...

Extra arguments. Currently not used

.p

Optional. A predicate function, passed as-is to purrr::keep() before turning the response into a tibble. Can be useful for performance

Details

Please see https://docs.posit.co/connect/api/#get-/v1/content for more information

Value

A tibble with the following columns:

Examples

## Not run: 
library(connectapi)
client <- connect()

get_content(client)

## End(Not run)


[Package connectapi version 0.1.3.1 Index]