GET api/v1/{tenantid}/cardprocessing/cardreaders
Returns the list of Card Readers
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tenantid |
Tenant id |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
List of Card Readers
Collection of Com.Healthbridge.Hhas.CardProcessing.Interface.ValueObjects.CardReaderVo| Name | Description | Type | Additional information |
|---|---|---|---|
| CardReaderId | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| NodeId | unsigned integer |
None. |
|
| Identifier | string |
None. |
|
| SerialNumber | string |
None. |
|
| Address | string |
None. |
|
| Port | string |
None. |
|
| ConnectionMethod | Com.Healthbridge.Hhas.CardProcessing.Interface.ValueObjects.ConnectionMethod |
None. |
|
| SharedSecret | string |
None. |
|
| NodeVersion | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CardReaderId": "2f8ac8d9-28d0-4d65-b8c0-9d7032136e40",
"TenantId": "0c680ae6-7924-4bf5-8687-27952d6f6bdb",
"NodeId": 3,
"Identifier": "sample string 4",
"SerialNumber": "sample string 5",
"Address": "sample string 6",
"Port": "sample string 7",
"ConnectionMethod": 1,
"SharedSecret": "sample string 8",
"NodeVersion": "sample string 9"
},
{
"CardReaderId": "2f8ac8d9-28d0-4d65-b8c0-9d7032136e40",
"TenantId": "0c680ae6-7924-4bf5-8687-27952d6f6bdb",
"NodeId": 3,
"Identifier": "sample string 4",
"SerialNumber": "sample string 5",
"Address": "sample string 6",
"Port": "sample string 7",
"ConnectionMethod": 1,
"SharedSecret": "sample string 8",
"NodeVersion": "sample string 9"
}
]
application/xml, text/xml
Sample:
<ArrayOfCardReader xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mpsapi.healthbridge.com/rcm/cardprocessing/v1/cardpayment/">
<CardReader>
<Address>sample string 6</Address>
<CardReaderId>2f8ac8d9-28d0-4d65-b8c0-9d7032136e40</CardReaderId>
<ConnectionMethod>Bluetooth</ConnectionMethod>
<Identifier>sample string 4</Identifier>
<NodeId>3</NodeId>
<NodeVersion>sample string 9</NodeVersion>
<Port>sample string 7</Port>
<SerialNumber>sample string 5</SerialNumber>
<SharedSecret>sample string 8</SharedSecret>
<TenantId>0c680ae6-7924-4bf5-8687-27952d6f6bdb</TenantId>
</CardReader>
<CardReader>
<Address>sample string 6</Address>
<CardReaderId>2f8ac8d9-28d0-4d65-b8c0-9d7032136e40</CardReaderId>
<ConnectionMethod>Bluetooth</ConnectionMethod>
<Identifier>sample string 4</Identifier>
<NodeId>3</NodeId>
<NodeVersion>sample string 9</NodeVersion>
<Port>sample string 7</Port>
<SerialNumber>sample string 5</SerialNumber>
<SharedSecret>sample string 8</SharedSecret>
<TenantId>0c680ae6-7924-4bf5-8687-27952d6f6bdb</TenantId>
</CardReader>
</ArrayOfCardReader>