Scanners Endpoint
registration of hardware scanners used for ACH transactions
Capabilities
Methods | POST, PUT, GET, DELETE |
---|---|
Filters | title, serial_number, scanner_model_id |
Expands | scanner_model, location, created_user, scanner_manufacturer |
Fields
Name | Format | Length | Default | Comments |
---|---|---|---|---|
id | string | 24 | System Generated | ID |
title | string | 24 | Ttile of the scanner | |
serial_number | string | 24 | the scanner's serial number | |
scanner_model_id | integer | 10 | the ID of the scanner's model that can be accessed via v2/scannermodels |
|
created_ts | integer | 10 | System Generated | |
created_user_id | string | 36 | System Generated | |
modified_ts | integer | 10 | System Generated | |
modified_user_id | string | 36 | System Generated | |
active | boolean | 1 | active |
Endpoint Actions
Create Record
POST /v2/scanners
Update Record
PUT /v2/scanners/{id}
View Single Record
GET/v2/scanners/{id}
View Record List
GET /v2/scanners
Note: Filters can be used to search for Scanners by including the columns you want to filter on as URL parameters. i.e. /v2/scanners?title=something&serial_number=12345
Delete Record
DELETE /v2/scanners/{id}