DELETE /v2/locations/:id
Destroy a location
live_help Notes
assignment
This action requires one of theses roles:
Basic staff
settings Params
Param name | Description |
---|---|
id |
required
. Must be String
The requested id |
Examples
DELETE /v2/locations/4
204
curl -X DELETE -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/locations/4"
require "oauth2"
UID = "Your application uid"
SECRET = "Your application secret"
client = OAuth2::Client.new(UID, SECRET, site: "https://api.intra.42.fr")
token = client.client_credentials.get_token
response = token.delete("/v2/locations/4")
response.status
# => 204
response.parsed
# =>