GET /v2/closes/:close_id/community_services
Return all the community services of the given Close
GET /v2/community_services
Return all the community services
live_help Notes
chrome_reader_mode
This resource is paginated by 30 items
settings Params
Param name | Description |
---|---|
close_id |
optional
. Must be String
The close id |
sort |
optional
. Must be one of: id , close_id , tiger_id , duration , schedule_at , occupation , token , state , created_at , updated_at .
The sort field. Sorted by created_at desc, id desc by default. MoreExample:To sort on community services on the fields created_at on a descending order and updated_at on a ascending order: ...&sort=-created_at,updated_at |
filter |
optional
. Must be one of: id , close_id , tiger_id , duration , schedule_at , occupation , token , state , created_at , updated_at , campus_id , schedule .
Filtering on one or more fields MoreExample:
To filter on community services with the
...&filter[id]=a_value,another_value Filterable fields:
|
range |
optional
. Must be one of: id , close_id , tiger_id , duration , schedule_at , occupation , token , state , created_at , updated_at .
Select on a particular range MoreExample:
To range on community services with the
...&range[updated_at]=min_value,max_value Rangeable fields:
|
page |
optional
. Must be a Hash
The pagination params, as a hash |
page[number] |
optional
. Must be Fixnum
The current page |
page[size] |
optional
. Must be Fixnum
The number of items per page, defaults to 30, maximum 100 |
Examples
GET /v2/community_services.json
200
[
{
"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",
"close": {
"id": 2,
"reason": "Connecticut giants",
"state": "unclose",
"created_at": "2017-11-22T13:42:20.888Z",
"updated_at": "2017-11-22T13:42:20.987Z"
}
},
{
"id": 1,
"duration": 14400,
"schedule_at": "2017-11-27T11:00:00.000Z",
"occupation": "North Carolina spirits",
"state": "schedule",
"created_at": "2017-11-22T13:42:20.806Z",
"updated_at": "2017-11-22T13:42:20.876Z",
"close": {
"id": 1,
"reason": "Florida druids",
"state": "unclose",
"created_at": "2017-11-22T13:42:20.695Z",
"updated_at": "2017-11-22T13:42:20.857Z"
}
}
]
curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/community_services.json"
[
{
"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",
"close": {
"id": 2,
"reason": "Connecticut giants",
"state": "unclose",
"created_at": "2017-11-22T13:42:20.888Z",
"updated_at": "2017-11-22T13:42:20.987Z"
}
},
{
"id": 1,
"duration": 14400,
"schedule_at": "2017-11-27T11:00:00.000Z",
"occupation": "North Carolina spirits",
"state": "schedule",
"created_at": "2017-11-22T13:42:20.806Z",
"updated_at": "2017-11-22T13:42:20.876Z",
"close": {
"id": 1,
"reason": "Florida druids",
"state": "unclose",
"created_at": "2017-11-22T13:42:20.695Z",
"updated_at": "2017-11-22T13:42:20.857Z"
}
}
]
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/community_services.json")
response.status
# => 200
response.parsed
# => [{"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", "close"=>{"id"=>2, "reason"=>"Connecticut giants", "state"=>"unclose", "created_at"=>"2017-11-22T13:42:20.888Z", "updated_at"=>"2017-11-22T13:42:20.987Z"}}, {"id"=>1, "duration"=>14400, "schedule_at"=>"2017-11-27T11:00:00.000Z", "occupation"=>"North Carolina spirits", "state"=>"schedule", "created_at"=>"2017-11-22T13:42:20.806Z", "updated_at"=>"2017-11-22T13:42:20.876Z", "close"=>{"id"=>1, "reason"=>"Florida druids", "state"=>"unclose", "created_at"=>"2017-11-22T13:42:20.695Z", "updated_at"=>"2017-11-22T13:42:20.857Z"}}]