| Required role: | Admin |
| POST | /students/{StudentId}/forwarding_address | ||
|---|---|---|---|
| POST | /forwarding_addresses |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| SchoolId | body | string | No | |
| StudentId | path | int? | No | |
| Type | body | string | Yes | Allowable Values
|
| Address | body | string | Yes | |
| Address2 | body | string | No | |
| City | body | string | Yes | |
| State | body | string | Yes | |
| Country | body | string | Yes | |
| Postal | body | string | Yes | |
| Phone | body | string | No | |
| CellPhone | body | string | No | |
| EffectiveDt | body | DateTime? | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Result | form | ForwardingAddressDTO | No | |
| ResponseStatus | form | ResponseStatus | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ForwardingAddressId | form | int | Yes | |
| StudentId | form | int | Yes | |
| Type | form | string | Yes | Allowable Values
|
| Address | form | string | Yes | |
| Address2 | form | string | Yes | |
| City | form | string | Yes | |
| State | form | string | Yes | |
| Country | form | string | Yes | |
| Postal | form | string | Yes | |
| EffectiveDt | form | DateTime? | Yes | |
| Phone | form | string | No | |
| CellPhone | form | string | No |
| Summer |
| Home |
| School |
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.
POST //students/{StudentId}/forwarding_address HTTP/1.1
Host: api.lsu.abodehms.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"schoolId":"String","studentId":0,"type":"String","address":"String","address2":"String","city":"String","state":"String","country":"String","postal":"String","phone":"String","cellPhone":"String","effectiveDt":"0001-01-01T00:00:00.0000000"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"result":{"forwardingAddressId":0,"studentId":0,"type":"Summer","address":"String","address2":"String","city":"String","state":"String","country":"String","postal":"String","effectiveDt":"0001-01-01T00:00:00.0000000","phone":"String","cellPhone":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}