POST api/bankCodes/{bankCodeId}/authorizedSigners

Insert an authorized signer

Request Information

URI Parameters

NameDescriptionTypeAdditional information
bankCodeId

integer

Required

Body Parameters

BankCodeAuthorizedSignerCreateViewModel
NameDescriptionTypeAdditional information
BankCodeId

integer

None.

SignerName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "bankCodeId": 1,
  "signerName": "sample string 2"
}

application/xml, text/xml

Sample:
<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

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BankCodeAuthorizedSignerCreateViewModel'.

Response Information

Resource Description

BankCodeAuthorizedSignerViewModel
NameDescriptionTypeAdditional 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": "2024-10-14T08:19:04.3523084-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>2024-10-14T08:19:04.3523084-04:00</DateAdded>
  <SignerId>1</SignerId>
</BankCodeAuthorizedSignerViewModel>