GET
/
api
/
v1
/
institutions
/
{institution_id}
/
profiles
List profiles
curl --request GET \
  --url https://api.scholarlysoftware.com/api/v1/institutions/{institution_id}/profiles \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "type": "profile",
      "attributes": {
        "display_name": "<string>",
        "first_name": "<string>",
        "last_name": "<string>",
        "email": "jsmith@example.com",
        "created_at": "<string>",
        "updated_at": "<string>"
      },
      "relationships": {
        "institution": {
          "data": {
            "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
            "type": "institution"
          }
        },
        "current_department": {
          "data": {
            "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
            "type": "department"
          }
        }
      }
    }
  ]
}

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

Response

200
application/vnd.api+json

profiles found

The response is of type object.