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": "c83f6a39-d91b-4fe5-9516-e8a93cfe8e65",
"ToPersonId": "4e671e4a-df4d-4b08-9f38-e703165d80e6",
"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>c83f6a39-d91b-4fe5-9516-e8a93cfe8e65</FromPersonId> <ToPersonId>4e671e4a-df4d-4b08-9f38-e703165d80e6</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>