GET
/
api
/
v1
/
institutions
/
{id}
/
relationships
/
profiles
Get institution profiles relationship
curl --request GET \
  --url https://api.scholarlysoftware.com/api/v1/institutions/{id}/relationships/profiles \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "type": "profile",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "links": {
    "self": "<string>",
    "related": "<string>"
  },
  "meta": {
    "current_page": 123,
    "total_pages": 123,
    "total_count": 123,
    "per_page": 123
  }
}

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

Institution UUID

Query Parameters

filter[first_name_cont]
string

Filter by first name containing value

filter[last_name_cont]
string

Filter by last name containing value

sort
string

Sort order (e.g., -created_at,name)

page[number]
integer

Page number

page[size]
integer

Page size

Response

200
application/vnd.api+json

relationship data found

The response is of type object.