POST api/transfer/propertyaccountfunds
Transfer property account funds Processes this transfer API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
The property account funds data contract supplied with the request.
PropertyAccountFundsDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| GroupId |
The unique identifier of the related group resource. |
integer |
None. |
| DestinationAccountId |
The unique identifier of the related destination account resource. |
integer |
None. |
| SourceAccounts |
The collection of source accounts. |
Collection of SourceAccountDataContract |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"GroupId": 1,
"DestinationAccountId": 2,
"SourceAccounts": [
{
"SourceAccountId": 1,
"Amount": 2.0
},
{
"SourceAccountId": 1,
"Amount": 2.0
}
]
}
Response Information
Resource Description
The response returned after the operation completes.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.