PUT api/v{version}/ManageProfile/UpdateLowBalanceNotification

Request Information

URI Parameters

NameDescriptionTypeAdditional information
version

string

None.

Body Parameters

LowBalNotificationModel
NameDescriptionTypeAdditional information
Lowbalancenotificationid

integer

None.

Lowbalanceamount

decimal number

None.

Notificationreqd

string

None.

Schoolfeenotificationid

integer

None.

FeeNotification

boolean

None.

FeeNotificationReminderDays

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Lowbalancenotificationid": 1,
  "Lowbalanceamount": 2.0,
  "Notificationreqd": "sample string 3",
  "Schoolfeenotificationid": 4,
  "FeeNotification": true,
  "FeeNotificationReminderDays": 6
}

application/xml, text/xml

Sample:
<LowBalNotificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/K12.Shared.APIModels">
  <FeeNotification>true</FeeNotification>
  <FeeNotificationReminderDays>6</FeeNotificationReminderDays>
  <Lowbalanceamount>2</Lowbalanceamount>
  <Lowbalancenotificationid>1</Lowbalancenotificationid>
  <Notificationreqd>sample string 3</Notificationreqd>
  <Schoolfeenotificationid>4</Schoolfeenotificationid>
</LowBalNotificationModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

OperationResult
NameDescriptionTypeAdditional information
result

string

None.

Response Formats

application/json, text/json

Sample:
{
  "result": "sample string 1"
}

application/xml, text/xml

Sample:
<OperationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/K12.Shared.Models">
  <Result>sample string 1</Result>
</OperationResult>