POST api/Account/{accountNumber}/InsertActionCode
Inserts an action code on the account
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
accountNumber |
The account number |
string |
Required |
Body Parameters
The action code object
ActionCodeDtoName | Description | Type | Additional information |
---|---|---|---|
AccountSystem |
The type of Action Code (I.E. Loan or PBS) |
string |
None. |
BeginDate |
Date format MM/DD/YYYY - if the action code is an ongoing status then this will contain the starting date for the related code |
date |
None. |
Code |
A code related to a corresponding action (A Drop down field can be found on ClientCentral > Action Code) |
string |
None. |
Date |
Date format MM/DD/YYYY - if the action code is a single use code then this will contain the date the action code is applied |
date |
None. |
EndDate |
Date format MM/DD/YYYY - if the action code is an ongoing status then this will contain the end date for the related code |
date |
None. |
ID |
The Unique ID for each action code |
integer |
None. |
ReviewDate |
Date format MM/DD/YYYY - Review Date |
date |
None. |
Status |
The Selected Status for the Corresponding Action (I.E Active, Hold, Completed, Cancelled, Failed) |
string |
None. |
Request Formats
application/json, text/json
{ "AccountSystem": "sample string 1", "BeginDate": "2025-01-09T11:44:56.057246-07:00", "Code": "sample string 3", "Date": "2025-01-09T11:44:56.0672635-07:00", "EndDate": "2025-01-09T11:44:56.0672635-07:00", "ID": 6, "ReviewDate": "2025-01-09T11:44:56.0672635-07:00", "Status": "sample string 8" }
application/xml, text/xml
<ActionCodeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestAPI.Models"> <AccountSystem>sample string 1</AccountSystem> <BeginDate>2025-01-09T11:44:56.057246-07:00</BeginDate> <Code>sample string 3</Code> <Date>2025-01-09T11:44:56.0672635-07:00</Date> <EndDate>2025-01-09T11:44:56.0672635-07:00</EndDate> <ID>6</ID> <ReviewDate>2025-01-09T11:44:56.0672635-07:00</ReviewDate> <Status>sample string 8</Status> </ActionCodeDto>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
A boolean indicating success
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.