GET
/
api
/
v1
/
faculty_activities
/
{faculty_activity_id}
/
files
cURL
curl --request GET \
  --url https://api.scholarlysoftware.com/api/v1/faculty_activities/{faculty_activity_id}/files \
  --header 'Authorization: Bearer <token>' \
  --header 'Accept: application/vnd.api+json'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {
        "filename": "<string>",
        "content_type": "<string>",
        "url": "<string>"
      }
    }
  ]
}

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

faculty_activity_id
string
required

Faculty Activity UUID

Response

200
application/vnd.api+json

empty files list

The response is of type object.