POST api/bankCodes/{bankCodeId}/authorizedSigners
Insert an authorized signer
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| bankCodeId |
|
integer |
Required |
Body Parameters
BankCodeAuthorizedSignerCreateViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BankCodeId |
|
integer |
None. |
| SignerName |
|
string |
None. |
Request Formats
application/json, text/json
{
"bankCodeId": 1,
"signerName": "sample string 2"
}
application/xml, text/xml
<BankCodeAuthorizedSignerCreateViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.Host.Shared.ViewModels.BankCode"> <BankCodeId>1</BankCodeId> <SignerName>sample string 2</SignerName> </BankCodeAuthorizedSignerCreateViewModel>
application/x-www-form-urlencoded
Response Information
Resource Description
BankCodeAuthorizedSignerViewModel| Name | 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
{
"signerId": 1,
"authorizedSignerName": "sample string 2",
"bankCodeId": 3,
"creatorName": "sample string 4",
"dateAdded": "2025-10-29T04:44:49.0045202-04:00"
}
application/xml, text/xml
<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-10-29T04:44:49.0045202-04:00</DateAdded> <SignerId>1</SignerId> </BankCodeAuthorizedSignerViewModel>