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": "c475dd78-dea6-42a2-bfb6-0d841e8a52b5",
"ToPersonId": "0d413e6a-ba8d-470f-bb17-d2523f6f5830",
"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>c475dd78-dea6-42a2-bfb6-0d841e8a52b5</FromPersonId> <ToPersonId>0d413e6a-ba8d-470f-bb17-d2523f6f5830</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>