GET api/PurchaseRestrictions?personId={personId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| personId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PersonRestrictionsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PersonId | globally unique identifier |
None. |
|
| CashValue | string |
None. |
|
| DebitValue | string |
None. |
|
| MaxAlacarte | integer |
None. |
|
| SpecialInstructions | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PersonId": "5f312098-4a02-4d91-9ea2-833a93034090",
"CashValue": "sample string 2",
"DebitValue": "sample string 3",
"MaxAlacarte": 4,
"SpecialInstructions": "sample string 5"
}
application/xml, text/xml
Sample:
<PersonRestrictionsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.Primero.OnlineFRE.APIs.Models.Students"> <CashValue>sample string 2</CashValue> <DebitValue>sample string 3</DebitValue> <MaxAlacarte>4</MaxAlacarte> <PersonId>5f312098-4a02-4d91-9ea2-833a93034090</PersonId> <SpecialInstructions>sample string 5</SpecialInstructions> </PersonRestrictionsModel>