Skip to contents

Delete reservation

Usage

delete_reservation(scope, identifier, env = "production")

Arguments

scope

(character) Scope of data package

identifier

(numeric) Identifier of data package

env

(character) Repository environment. Can be: "production", "staging", or "development".

Value

(numeric) The deleted reservation identifier value

Note

User authentication is required (see login()). The same user who originally authenticated to create the reservation must authenticate to delete it.

See also

Examples

if (FALSE) {

login()

# Create reservation
identifier <- create_reservation(scope = "edi", env = "staging")
identifier
#> [1] 604

# Delete reservation
delete_reservation(scope = "edi", identifier = identifier, env = "staging")
#> [1] 604

logout()
}