Return the announcement specified by the :id parameter

settings Params

Param name Description
id required . Must be String

The requested id

GET /v2/announcements/4
200
{
  "id": 4,
  "author": "Jerrell Prohaska",
  "title": "Minnesota frogs",
  "text": "Pickled aut et repellendus ugh sed a natus. Beatae cliche knausgaard.",
  "kind": "global",
  "link": null,
  "created_at": "2017-11-22T13:41:03.321Z",
  "updated_at": "2017-11-22T13:41:03.321Z",
  "expire_at": "2017-11-03T07:42:11.309Z"
}
curl  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/announcements/4"

{
  "id": 4,
  "author": "Jerrell Prohaska",
  "title": "Minnesota frogs",
  "text": "Pickled aut et repellendus ugh sed a natus. Beatae cliche knausgaard.",
  "kind": "global",
  "link": null,
  "created_at": "2017-11-22T13:41:03.321Z",
  "updated_at": "2017-11-22T13:41:03.321Z",
  "expire_at": "2017-11-03T07:42:11.309Z"
}
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/announcements/4")
response.status
# => 200
response.parsed
# => {"id"=>4, "author"=>"Jerrell Prohaska", "title"=>"Minnesota frogs", "text"=>"Pickled aut et repellendus ugh sed a natus. Beatae cliche knausgaard.", "kind"=>"global", "link"=>nil, "created_at"=>"2017-11-22T13:41:03.321Z", "updated_at"=>"2017-11-22T13:41:03.321Z", "expire_at"=>"2017-11-03T07:42:11.309Z"}