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>"
}
}
}
'