DELETE /v2/project_sessions/:project_session_id/scale_teams/:id
Destroy a scale team for the given Id, associated with the given Project session
DELETE /v2/scale_teams/:id
Destroy a scale team
live_help Notes
This action requires a token resource owner
scoped on projects with enough privileges
or an application with one of theses role(s):
assignment_ind
Advanced tutor
.
settings Params
Param name | Description |
---|---|
project_session_id |
optional
. Must be String
The project_session id |
id |
required
. Must be String
The requested id |
Examples
DELETE /v2/scale_teams/1
204
curl -X DELETE -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/scale_teams/1"
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/scale_teams/1")
response.status
# => 204
response.parsed
# =>