POST api/clients/{clientId}/terms
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId | string |
Required |
Body Parameters
TermClientOverrideRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TermId | globally unique identifier |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| OffsetTerms | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"TermId": "9e05716a-24b7-4cd4-a2f5-6e45215716e5",
"StartDate": "2026-06-16T15:03:47.8627343-04:00",
"EndDate": "2026-06-16T15:03:47.8627343-04:00",
"OffsetTerms": true
}
Response Information
Resource Description
Collection of TermDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| Year | string |
None. |
|
| Name | string |
None. |
|
| Term | string |
None. |
|
| Part | string |
None. |
|
| CurrentYear | integer |
None. |
|
| CurrentAcademicYear | integer |
None. |
|
| WorkingDaysCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "a63b34f2-3618-4e2c-a765-74e73cf67562",
"StartDate": "2026-06-16T19:03:47.8627343Z",
"EndDate": "2026-06-16T19:03:47.8627343Z",
"Year": "sample string 4",
"Name": "sample string 5 sample string 4",
"Term": "sample string 5",
"Part": "sample string 6",
"CurrentYear": 1,
"CurrentAcademicYear": 1,
"WorkingDaysCount": 1
},
{
"Id": "a63b34f2-3618-4e2c-a765-74e73cf67562",
"StartDate": "2026-06-16T19:03:47.8627343Z",
"EndDate": "2026-06-16T19:03:47.8627343Z",
"Year": "sample string 4",
"Name": "sample string 5 sample string 4",
"Term": "sample string 5",
"Part": "sample string 6",
"CurrentYear": 1,
"CurrentAcademicYear": 1,
"WorkingDaysCount": 1
}
]