GET /v2/closes/:id
Get a close
live_help Notes
assignment
This action requires one of theses roles:
Basic staff
group_work
Requires following application scopes:
tig
settings Params
Param name | Description |
---|---|
id |
required
. Must be String
The requested id |
Examples
GET /v2/closes/2
200
{
"id": 2,
"reason": "Connecticut giants",
"state": "unclose",
"created_at": "2017-11-22T13:42:20.888Z",
"updated_at": "2017-11-22T13:42:20.987Z",
"end_at": null,
"community_services": [
{
"id": 2,
"duration": 14400,
"schedule_at": "2017-11-28T06:00:00.000Z",
"occupation": "West Virginia lions",
"state": "schedule",
"created_at": "2017-11-22T13:42:20.944Z",
"updated_at": "2017-11-22T13:42:21.007Z"
}
],
"user": {
"id": 82,
"login": "kyren",
"url": "https://api.intra.42.fr/v2/users/kyren"
},
"closer": {
"id": 2,
"login": "andre",
"url": "https://api.intra.42.fr/v2/users/andre"
}
}
curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/closes/2"
{
"id": 2,
"reason": "Connecticut giants",
"state": "unclose",
"created_at": "2017-11-22T13:42:20.888Z",
"updated_at": "2017-11-22T13:42:20.987Z",
"end_at": null,
"community_services": [
{
"id": 2,
"duration": 14400,
"schedule_at": "2017-11-28T06:00:00.000Z",
"occupation": "West Virginia lions",
"state": "schedule",
"created_at": "2017-11-22T13:42:20.944Z",
"updated_at": "2017-11-22T13:42:21.007Z"
}
],
"user": {
"id": 82,
"login": "kyren",
"url": "https://api.intra.42.fr/v2/users/kyren"
},
"closer": {
"id": 2,
"login": "andre",
"url": "https://api.intra.42.fr/v2/users/andre"
}
}
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/closes/2")
response.status
# => 200
response.parsed
# => {"id"=>2, "reason"=>"Connecticut giants", "state"=>"unclose", "created_at"=>"2017-11-22T13:42:20.888Z", "updated_at"=>"2017-11-22T13:42:20.987Z", "end_at"=>nil, "community_services"=>[{"id"=>2, "duration"=>14400, "schedule_at"=>"2017-11-28T06:00:00.000Z", "occupation"=>"West Virginia lions", "state"=>"schedule", "created_at"=>"2017-11-22T13:42:20.944Z", "updated_at"=>"2017-11-22T13:42:21.007Z"}], "user"=>{"id"=>82, "login"=>"kyren", "url"=>"https://api.intra.42.fr/v2/users/kyren"}, "closer"=>{"id"=>2, "login"=>"andre", "url"=>"https://api.intra.42.fr/v2/users/andre"}}