GET /v2/project_data/:id
Get a project datum
settings Params
Param name | Description |
---|---|
id |
required
. Must be String
The requested id |
Examples
GET /v2/project_data/1
200
{
"id": 1,
"coordinates": [
11.0,
14.0
],
"by": [],
"kind": "rush",
"project_session_id": 1
}
curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/project_data/1"
{
"id": 1,
"coordinates": [
11.0,
14.0
],
"by": [],
"kind": "rush",
"project_session_id": 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.get("/v2/project_data/1")
response.status
# => 200
response.parsed
# => {"id"=>1, "coordinates"=>[11.0, 14.0], "by"=>[], "kind"=>"rush", "project_session_id"=>1}