GET api/bankcodes/{id}/checksignatures

GET: api/bankcodes/{id}/checksignatures Get the item information by the Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

CheckSignatureViewModel

CheckSignatureViewModel
NameDescriptionTypeAdditional information
CheckSignatureId

CheckSignatureId

integer

None.

Name

Name

string

None.

Status

Status

boolean

None.

hasActiveBankCode

One or more active bankcode

boolean

None.

Image1

The signature image 1

Image

None.

Image2

The optional signature image 2

Image

None.

Response Formats

application/json, text/json

Sample:
{
  "checkSignatureId": 1,
  "name": "sample string 2",
  "status": true,
  "hasActiveBankCode": true,
  "image1": null,
  "image2": null
}

application/xml, text/xml

Sample:
<CheckSignatureViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <CheckSignatureId>1</CheckSignatureId>
  <Image1 xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Drawing" i:nil="true" />
  <Image2 xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Drawing" i:nil="true" />
  <Name>sample string 2</Name>
  <Status>true</Status>
  <hasActiveBankCode>true</hasActiveBankCode>
</CheckSignatureViewModel>