GET
/
api
/
v1
/
institutions
/
{institution_id}
/
faculty_activities
List faculty activities for an institution
curl --request GET \
  --url https://api.scholarlysoftware.com/api/v1/institutions/{institution_id}/faculty_activities \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {
        "start_date": "<string>",
        "end_date": "<string>",
        "properties": {}
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required

Bearer token

Path Parameters

institution_id
string
required

Institution UUID

Query Parameters

filter[kind]
string

Filter by activity kind

filter[start_date_gteq]
string

Filter by start date greater than or equal to

filter[end_date_lteq]
string

Filter by end date less than or equal to

filter[created_at_gteq]
string

Filter by created date greater than or equal to

sort
string

Sort parameter

page
object

Pagination parameters

Response

200
application/vnd.api+json

faculty activities filtered by kind

The response is of type object.