GET api/bankCodes/{bankCodeId}/authorizedSigners
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
bankCodeId |
|
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
BankCodeAuthorizedSignerViewModelName | Description | Type | Additional information |
---|---|---|---|
SignerId |
SignerId |
integer |
None. |
AuthorizedSignerName |
AuthorizedSigner |
string |
None. |
BankCodeId |
BankCodeId |
integer |
None. |
CreatorName |
CreatedBy |
string |
None. |
DateAdded |
CreatedOn |
date |
None. |
Response Formats
application/json, text/json
Sample:
{ "signerId": 1, "authorizedSignerName": "sample string 2", "bankCodeId": 3, "creatorName": "sample string 4", "dateAdded": "2025-04-03T18:00:58.9778672-04:00" }
application/xml, text/xml
Sample:
<BankCodeAuthorizedSignerViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.Host.Shared.ViewModels.BankCode"> <AuthorizedSignerName>sample string 2</AuthorizedSignerName> <BankCodeId>3</BankCodeId> <CreatorName>sample string 4</CreatorName> <DateAdded>2025-04-03T18:00:58.9778672-04:00</DateAdded> <SignerId>1</SignerId> </BankCodeAuthorizedSignerViewModel>