Skip to main content
POST
/
api
/
v1
/
campuses
Create a campus
curl --request POST \
  --url https://api.scholarlysoftware.com/api/v1/campuses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "type": "campus",
    "attributes": {
      "name": "<string>",
      "external_id": "<string>"
    }
  }
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required

Body

application/vnd.api+json
data
object
required

Response

campus created