brapi_post_seasons: post /seasons

View source: R/brapi_post_seasons.R

brapi_post_seasonsR Documentation

post /seasons

Description

POST new Seasons

Usage

brapi_post_seasons(
  con = NULL,
  seasonDbId = "",
  seasonName = "",
  year = as.integer(NA)
)

Arguments

con

list; required: TRUE; BrAPI connection object

seasonDbId

character; required: FALSE; The Id which uniquely identifies a season. For backward compatibility it can be a string like '2012', '1957-2004'.

seasonName

character; required: FALSE; Name of the season. ex. 'Spring', 'Q2', 'Season A', etc.

year

integer; required: FALSE; The 4 digit year of the season.

Details

Add new season entries to the database

Value

data.frame

Author(s)

Maikel Verouden

References

BrAPI SwaggerHub

See Also

Other brapi-core: brapi_get_commoncropnames(), brapi_get_lists_listDbId(), brapi_get_lists(), brapi_get_locations_locationDbId(), brapi_get_locations(), brapi_get_people_personDbId(), brapi_get_people(), brapi_get_programs_programDbId(), brapi_get_programs(), brapi_get_search_lists_searchResultsDbId(), brapi_get_search_locations_searchResultsDbId(), brapi_get_search_people_searchResultsDbId(), brapi_get_search_programs_searchResultsDbId(), brapi_get_search_studies_searchResultsDbId(), brapi_get_search_trials_searchResultsDbId(), brapi_get_seasons_seasonDbId(), brapi_get_seasons(), brapi_get_serverinfo(), brapi_get_studies_studyDbId(), brapi_get_studies(), brapi_get_studytypes(), brapi_get_trials_trialDbId(), brapi_get_trials(), brapi_post_lists_listDbId_items(), brapi_post_lists(), brapi_post_locations(), brapi_post_people(), brapi_post_programs(), brapi_post_search_lists(), brapi_post_search_locations(), brapi_post_search_people(), brapi_post_search_programs(), brapi_post_search_studies(), brapi_post_search_trials(), brapi_post_studies(), brapi_post_trials(), brapi_put_lists_listDbId(), brapi_put_locations_locationDbId(), brapi_put_people_personDbId(), brapi_put_programs_programDbId(), brapi_put_seasons_seasonDbId(), brapi_put_studies_studyDbId(), brapi_put_trials_trialDbId()

Other Seasons: brapi_get_seasons_seasonDbId(), brapi_get_seasons(), brapi_put_seasons_seasonDbId()

Examples

## Not run: 
con <- brapi_db()$testserver
con[["token"]] <- "YYYY"
seasonDbId <- "spring_2021"
seasonName <- "spring"
year <- 2021

brapi_post_seasons(con = con,
                   seasonDbId = seasonDbId,
                   seasonName = seasonName,
                   year = year)

## End(Not run)


mverouden/brapir-v2 documentation built on April 22, 2022, 9:24 a.m.