POST api/TranferFunds
Request Information
URI Parameters
None.
Body Parameters
TransferFundsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FromPersonId | globally unique identifier |
None. |
|
| ToPersonId | globally unique identifier |
None. |
|
| Amount | decimal number |
None. |
|
| Comments | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FromPersonId": "1647dd9c-0306-49dd-aed3-ed36f81d29ed",
"ToPersonId": "200ae774-cb04-4380-b56f-b89b2035f6b2",
"Amount": 3.0,
"Comments": "sample string 4"
}
application/xml, text/xml
Sample:
<TransferFundsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.Primero.OnlineFRE.APIs.Models.Students"> <Amount>3</Amount> <Comments>sample string 4</Comments> <FromPersonId>1647dd9c-0306-49dd-aed3-ed36f81d29ed</FromPersonId> <ToPersonId>200ae774-cb04-4380-b56f-b89b2035f6b2</ToPersonId> </TransferFundsModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>