curl --request POST \
--url https://api.scholarlysoftware.com/api/v1/additional_appointments \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "additional_appointment",
"attributes": {
"title": "<string>",
"effective_from": "2023-12-25",
"label": "<string>",
"featured": true,
"external_id": "<string>",
"effective_to": "2026-01-01",
"percent_allocation": 100,
"note": "<div>This is a note with <strong>formatting</strong></div>"
},
"relationships": {
"profile": {
"data": {
"type": "profile",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
},
"department": {
"data": {
"type": "department",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}
}
}
}
'{
"data": {
"id": "289f7cdd-be9d-4ce1-8149-569c50ed85ff",
"type": "<string>",
"attributes": {
"title": "<string>",
"effective_from": "2023-12-25",
"effective_to": "2023-12-25",
"label": "<string>",
"featured": true,
"percent_allocation": 123,
"external_id": "<string>"
}
}
}Create a new additional appointment
curl --request POST \
--url https://api.scholarlysoftware.com/api/v1/additional_appointments \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "additional_appointment",
"attributes": {
"title": "<string>",
"effective_from": "2023-12-25",
"label": "<string>",
"featured": true,
"external_id": "<string>",
"effective_to": "2026-01-01",
"percent_allocation": 100,
"note": "<div>This is a note with <strong>formatting</strong></div>"
},
"relationships": {
"profile": {
"data": {
"type": "profile",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
},
"department": {
"data": {
"type": "department",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}
}
}
}
'{
"data": {
"id": "289f7cdd-be9d-4ce1-8149-569c50ed85ff",
"type": "<string>",
"attributes": {
"title": "<string>",
"effective_from": "2023-12-25",
"effective_to": "2023-12-25",
"label": "<string>",
"featured": true,
"percent_allocation": 123,
"external_id": "<string>"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer token
Show child attributes
"additional_appointment""additional_appointment"
Show child attributes
"2026-01-01"
100
"<div>This is a note with <strong>formatting</strong></div>"
Show child attributes
multiple appointments with null external_id allowed
Show child attributes
"289f7cdd-be9d-4ce1-8149-569c50ed85ff"
"additional_appointment"Show child attributes