GET /api/v1/cultivars

GET /api/beta/cultivars

Get all rows that match the values provided for all column-name parameters used. If the value starts with a tilde ('~'), the rest of the value is treated as a regular expression to match and the matching is case insensitive. Otherwise, the column value must match the parameter value exactly.

Params

Param name Description
limit
optional

Sets an upper bound on the number of results to return. Defaults to 200.

Validations:

  • Must match regular expression /^([1-9][0-9]*|all|none)$/.

offset
optional

Set the number of rows to skip before returning matching rows.

Validations:

  • Must match regular expression /[1-9][0-9]*/.

key
optional

The API key to use for authorization.

associations_mode
optional

Set the amount of data to display about associations. Default is “full_info” for the show action and “count” for the index action.

Validations:

  • Must be one of: full_info, ids, count.

id
optional
specie_id
optional
name
optional

Cultivar name given by breeder or reported in citation.

ecotype
optional

An ecotype is a distinct variety adapted to a particular environment. Implemented to distinguish 'upland' and 'lowland' Switchgrass cultivars. Can also be used to distinguish, e.g. species in temperate vs. tundra

notes
optional
created_at
optional
updated_at
optional
previous_id
optional

GET /api/v1/cultivars/:id

GET /api/beta/cultivars/:id

Get all information about the row with the matching id value. Information about associated rows (those reference by foreign keys) is shown as well.

Params

Param name Description
key
optional

The API key to use for authorization.

associations_mode
optional

Set the amount of data to display about associations. Default is “full_info” for the show action and “count” for the index action.

Validations:

  • Must be one of: full_info, ids, count.