POST api/Account/AccountDetailsById/{accountId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AccountVM| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountId | integer |
None. |
|
| AccountTypeId | integer |
None. |
|
| AccountDetailsTypeId | integer |
None. |
|
| AccountType | string |
None. |
|
| AccountDetailsType | string |
None. |
|
| Name | string |
None. |
|
| AccountNumber | string |
None. |
|
| BankName | string |
None. |
|
| IFSCCode | string |
None. |
|
| CustomerId | integer |
None. |
|
| LastModified | date |
None. |
|
| IsActive | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"accountId": 1,
"accountTypeId": 2,
"accountDetailsTypeId": 3,
"accountType": "sample string 4",
"accountDetailsType": "sample string 5",
"name": "sample string 6",
"accountNumber": "sample string 7",
"bankName": "sample string 8",
"ifscCode": "sample string 9",
"customerId": 1,
"lastModified": "2025-10-28T17:12:51.5982472+05:30",
"isActive": true,
"message": "sample string 12"
}
application/xml, text/xml
Sample:
<AccountVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMS.VM"> <AccountDetailsType>sample string 5</AccountDetailsType> <AccountDetailsTypeId>3</AccountDetailsTypeId> <AccountId>1</AccountId> <AccountNumber>sample string 7</AccountNumber> <AccountType>sample string 4</AccountType> <AccountTypeId>2</AccountTypeId> <BankName>sample string 8</BankName> <CustomerId>1</CustomerId> <IFSCCode>sample string 9</IFSCCode> <IsActive>true</IsActive> <LastModified>2025-10-28T17:12:51.5982472+05:30</LastModified> <Message>sample string 12</Message> <Name>sample string 6</Name> </AccountVM>