GET api/checksignatures/{checkSignatureId}
Get check signatures by Id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| checkSignatureId |
|
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CheckSignatureViewModel
CheckSignatureViewModel| Name | Description | Type | Additional 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
{
"checkSignatureId": 1,
"name": "sample string 2",
"status": true,
"hasActiveBankCode": true,
"image1": null,
"image2": null
}
application/xml, text/xml
<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>