GET
/
api
/
v1
/
faculty_activities
/
{id}
Get a specific faculty activity
curl --request GET \
  --url https://api.scholarlysoftware.com/api/v1/faculty_activities/{id} \
  --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

id
string
required

Faculty Activity UUID

Response

200
application/vnd.api+json

faculty activity found

The response is of type object.