Skip to main content
GET
/
api
/
v1
/
ranks
/
{id}
Get a specific rank
curl --request GET \
  --url https://api.scholarlysoftware.com/api/v1/ranks/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "type": "rank",
    "attributes": {
      "name": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    },
    "relationships": {
      "institution": {}
    },
    "links": {
      "self": "/api/v1/ranks/7h8i9j0k-4567-8901-2345-def456789012"
    },
    "meta": {
      "deletable": true,
      "primary_appointments_count": 42
    }
  }
}

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

Rank UUID

Response

rank found

data
object
required
I