PATCH /v2/tags/:id
Update a tag
PUT /v2/tags/:id
Update a tag
live_help Notes
assignment
This action requires one of theses roles:
Advanced tutor
settings Params
Param name | Description |
---|---|
id |
required
. Must be String
The requested id |
tag | optional , nil allowed . Must be a Hash |
tag[name] |
optional
. Must be String
The name. Must be unique. |
tag[tags_users_attributes] |
optional
, nil allowed
. Must be an Array of nested elements
The tags users attributes. |
tag[tags_users_attributes][user_id] |
optional
. Must be Fixnum
The user id. |
tag[tags_users_attributes][id] |
optional
, nil allowed
. Must be Fixnum
The id. |
tag[tags_users_attributes][_destroy] |
optional
, nil allowed
. Must be String
The destroy. |
tag[cursus_ids] |
optional
, nil allowed
. Must be an array of Integer
The cursus ids. |
Examples
PUT /v2/tags/6
{
"tag": {
"kind": "general",
"name": "Legend"
}
}
204
curl -X PUT -H "Authorization: Bearer YOUR_ACCESS_TOKEN" -H "Content-Type: application/json" -d '{"tag":{"kind":"general","name":"Legend"}}' "https://api.intra.42.fr/v2/tags/6"
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
params = {tag: {kind: "general", name: "Legend"}}
response = token.put("/v2/tags/6", params: params)
response.status
# => 204
response.parsed
# =>