GET /v2/tags/:id
Get a tag
settings Params
Param name | Description |
---|---|
id |
required
. Must be String
The requested id |
Examples
GET /v2/tags/6
200
{
"id": 6,
"name": "Jour 13",
"kind": "project",
"users": [],
"subnotions": []
}
curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/tags/6"
{
"id": 6,
"name": "Jour 13",
"kind": "project",
"users": [],
"subnotions": []
}
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.get("/v2/tags/6")
response.status
# => 200
response.parsed
# => {"id"=>6, "name"=>"Jour 13", "kind"=>"project", "users"=>[], "subnotions"=>[]}