GET api/PurchaseRestrictions?personId={personId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
personId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

PersonRestrictionsModel
NameDescriptionTypeAdditional 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": "1b1ee856-2c7f-40fe-875e-168f36ef1e7a",
  "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>1b1ee856-2c7f-40fe-875e-168f36ef1e7a</PersonId>
  <SpecialInstructions>sample string 5</SpecialInstructions>
</PersonRestrictionsModel>