Retrieves all signatures, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of signatures.
db_signature| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| db_table_id |
Table.id of the linked entity |
globally unique identifier | |
| id_in_table |
Id of the linked entity |
globally unique identifier | |
| signature |
Captured image bytes of the signature. |
Collection of byte | |
| date_signed |
Date start |
date | |
| signature_type |
Free-text classification of who/what this signature represents (e.g. customer, technician). |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "4c632105-fd5a-489b-9e65-508903bcb7e3",
"db_table_id": "22f3dffd-dbae-42b7-ade4-890483441c05",
"id_in_table": "944be44a-e8ac-4f88-8a66-0a4eb9580403",
"signature": "QEA=",
"date_signed": "2026-09-16T09:22:43.6823015+00:00",
"signature_type": "sample string 5",
"modified_dateutc": "2026-09-16T09:22:43.6823015+00:00"
}
application/xml, text/xml
Sample:
<db_signature xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <date_signed>2026-09-16T09:22:43.682Z</date_signed> <db_table_id>22f3dffd-dbae-42b7-ade4-890483441c05</db_table_id> <id>4c632105-fd5a-489b-9e65-508903bcb7e3</id> <id_in_table>944be44a-e8ac-4f88-8a66-0a4eb9580403</id_in_table> <modified_dateutc>2026-09-16T09:22:43.682Z</modified_dateutc> <signature>QEA=</signature> <signature_type>sample string 5</signature_type> </db_signature>