| PUT | /move_appointment_periods/{Id} |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | path | int | No | |
| HousingPoolId | body | int | No | |
| TermId | body | int | No | |
| OpenDt | body | DateTime | No | |
| CloseDt | body | DateTime | No | |
| CompletionHtml | body | string | No | |
| BuildingId | body | int? | No | |
| IntroHtml | body | string | No | |
| RequireApplication | body | bool | No | |
| ExcludeNewStudents | body | bool | No | |
| PreventSameSlotRoommate | body | bool | No | |
| AllowEdit | body | bool | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Result | form | MoveAppointmentPeriodDTO | No | |
| ResponseStatus | form | ResponseStatus | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | form | int | No | |
| HousingPoolId | form | int | No | |
| TermId | form | int | No | |
| OpenDt | form | DateTime | No | |
| CloseDt | form | DateTime | No | |
| CompletionHtml | form | string | No | |
| BuildingId | form | int? | No | |
| IntroHtml | form | string | No | |
| RequireApplication | form | bool | No | |
| ExcludeNewStudents | form | bool | No | |
| PreventSameSlotRoommate | form | bool | No | |
| AllowEdit | form | bool | No | |
| CreatedDt | form | DateTime | No | |
| CreatedBy | form | string | No | |
| ModifiedDt | form | DateTime? | No | |
| ModifiedBy | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT //move_appointment_periods/{Id} HTTP/1.1
Host: api.lsu.abodehms.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
id: 0,
housingPoolId: 0,
termId: 0,
openDt: 0001-01-01,
closeDt: 0001-01-01,
completionHtml: String,
buildingId: 0,
introHtml: String,
requireApplication: False,
excludeNewStudents: False,
preventSameSlotRoommate: False,
allowEdit: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
result:
{
id: 0,
housingPoolId: 0,
termId: 0,
openDt: 0001-01-01,
closeDt: 0001-01-01,
completionHtml: String,
buildingId: 0,
introHtml: String,
requireApplication: False,
excludeNewStudents: False,
preventSameSlotRoommate: False,
allowEdit: False,
createdDt: 0001-01-01,
createdBy: String,
modifiedDt: 0001-01-01,
modifiedBy: String
},
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}