Skip to contents

Get a Single Trial by ID

Usage

brapi_trial(con, trialDbId)

Arguments

con

A brapi_connection() object.

trialDbId

Character. The unique trial identifier.

Value

A single-row tibble with trial details.

Examples

# \donttest{
con <- brapi_connection("https://test-server.brapi.org")
brapi_trial(con, "trial1")
#> # A tibble: 1 × 4
#>   datasetPUI              license               publicReleaseDate submissionDate
#>   <chr>                   <chr>                 <chr>             <chr>         
#> 1 doi:10.15454/fake/12345 https://creativecomm… 2014-09-01        2014-01-01    
# }