GET api/bankCodes/{bankCodeId}/authorizedSigners

Request Information

URI Parameters

NameDescriptionTypeAdditional information
bankCodeId

integer

Required

Body Parameters

None.

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:24:38.3947201-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:24:38.3947201-04:00</DateAdded>
  <SignerId>1</SignerId>
</BankCodeAuthorizedSignerViewModel>