| PATCH | /student/{StudentId}/self_move_in | ||
|---|---|---|---|
| PATCH | /reservation/{ReservationId}/self_move_in |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| StudentId | path | int? | No | |
| SchoolId | query | string | No | |
| TermId | query | int? | No | |
| ReservationId | path | int? | No | |
| AllowSelfMoveIn | query | bool | No | |
| SelfMoveInState | query | SelfMoveInStateEnum? | No | |
| SelfMoveInDt | query | DateTime? | No |
| Contact |
| Inspection |
| MoveIn |
| Complete |
| Disabled |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Result | form | SelfMoveInDTO | No | |
| SelfMoveInSteps | form | List<string> | No | |
| ResponseStatus | form | ResponseStatus | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| StudentId | form | int | No | |
| TermId | form | int | No | |
| ReservationId | form | int | No | |
| AllowSelfMoveIn | form | bool | No | |
| SelfMoveInState | form | SelfMoveInStateEnum | No | |
| SelfMoveInDt | form | DateTime? | No | |
| BillingStartOption | form | BillingStartOptionEnum | No | |
| BillingEndOption | form | BillingEndOptionEnum | No | |
| FirstName | form | string | No | |
| LastName | form | string | No | |
| DisplayName | form | string | No | |
| Schoolid | form | string | No | |
| ReservedBuilding | form | string | No | |
| ReservedRoom | form | string | No | |
| ReservedRoomRate | form | string | No | |
| MovedInBuilding | form | string | No | |
| MovedInRoom | form | string | No | |
| MovedInRoomRate | form | string | No |
| Auto |
| Term |
| MoveIn |
| Auto |
| Term |
| MoveOut |
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PATCH //student/{StudentId}/self_move_in HTTP/1.1
Host: api.lsu.abodehms.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"studentId":0,"schoolId":"String","termId":0,"reservationId":0,"allowSelfMoveIn":false,"selfMoveInState":"Contact","selfMoveInDt":"0001-01-01T00:00:00.0000000"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"result":{"studentId":0,"termId":0,"reservationId":0,"allowSelfMoveIn":false,"selfMoveInState":"Contact","selfMoveInDt":"0001-01-01T00:00:00.0000000","billingStartOption":"Auto","billingEndOption":"Auto","firstName":"String","lastName":"String","displayName":"String","schoolid":"String","reservedBuilding":"String","reservedRoom":"String","reservedRoomRate":"String","movedInBuilding":"String","movedInRoom":"String","movedInRoomRate":"String"},"selfMoveInSteps":["String"],"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}