POST api/CallCenter/{accountNumber}/SetExitCode
Sets the exit code on an account
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
accountNumber |
The account number |
string |
Required |
Body Parameters
The exit code object
ExitCodeDtoName | Description | Type | Additional information |
---|---|---|---|
Code |
The exit code |
string |
None. |
AccountSystem |
The account system. One of {A, LOAN, PBS} |
string |
None. |
Date |
The date of the exit code |
date |
None. |
Amount |
The amount |
decimal number |
None. |
Comment |
Any comments associated with this exit code |
string |
None. |
UserID |
The ID of the user who created this exit code |
string |
None. |
AccessGroup |
The user's access group |
string |
None. |
TimeZoneOffset |
The timezone offset from GMT |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Code": "sample string 1", "AccountSystem": "sample string 2", "Date": "2025-01-09T11:26:53.0870755-07:00", "Amount": 4.1, "Comment": "sample string 5", "UserID": "sample string 6", "AccessGroup": "sample string 7", "TimeZoneOffset": "sample string 8" }
application/xml, text/xml
Sample:
<ExitCodeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestAPI.Models"> <AccessGroup>sample string 7</AccessGroup> <AccountSystem>sample string 2</AccountSystem> <Amount>4.1</Amount> <Code>sample string 1</Code> <Comment>sample string 5</Comment> <Date>2025-01-09T11:26:53.0870755-07:00</Date> <TimeZoneOffset>sample string 8</TimeZoneOffset> <UserID>sample string 6</UserID> </ExitCodeDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A boolean indicating success
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.