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": "80e2f06c-f09d-40ee-8086-d21ed717388d",
"ToPersonId": "c3c1812d-f6ba-4c5b-a714-2f421c4e1555",
"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>80e2f06c-f09d-40ee-8086-d21ed717388d</FromPersonId> <ToPersonId>c3c1812d-f6ba-4c5b-a714-2f421c4e1555</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>