Retrieves the signature with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The signature id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the signature, or 404 Not Found if it doesn't exist.

db_signature
NameDescriptionTypeAdditional 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": "52ed90b5-8626-4db1-8dff-0ff3a57db371",
  "db_table_id": "03a010b4-6833-47aa-b5a2-6a0db647fccb",
  "id_in_table": "9af79a05-cce3-4b68-8107-8026e6a2dd32",
  "signature": "QEA=",
  "date_signed": "2026-09-16T10:15:55.3350185+00:00",
  "signature_type": "sample string 5",
  "modified_dateutc": "2026-09-16T10:15:55.3350185+00:00"
}

application/xml, text/xml

Sample:
<db_signature xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <date_signed>2026-09-16T10:15:55.335Z</date_signed>
  <db_table_id>03a010b4-6833-47aa-b5a2-6a0db647fccb</db_table_id>
  <id>52ed90b5-8626-4db1-8dff-0ff3a57db371</id>
  <id_in_table>9af79a05-cce3-4b68-8107-8026e6a2dd32</id_in_table>
  <modified_dateutc>2026-09-16T10:15:55.335Z</modified_dateutc>
  <signature>QEA=</signature>
  <signature_type>sample string 5</signature_type>
</db_signature>