POST api/ARCustomerTransactionController/Email
Request Information
URI Parameters
None.
Body Parameters
TransactionDTOReq| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyId | string |
None. |
|
| AccountId | integer |
None. |
|
| ARCustomerId | string |
None. |
|
| TransactionID | integer |
None. |
|
| Amount | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"CompanyId": "sample string 1",
"AccountId": 2,
"ARCustomerId": "sample string 3",
"TransactionID": 4,
"Amount": 5.0
}
application/xml, text/xml
Sample:
<ARCustomerTransactionController.TransactionDTOReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAWinProV4.WebAPI.Controllers.AccountSpecific.AR"> <ARCustomerId>sample string 3</ARCustomerId> <AccountId>2</AccountId> <Amount>5</Amount> <CompanyId>sample string 1</CompanyId> <TransactionID>4</TransactionID> </ARCustomerTransactionController.TransactionDTOReq>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />