Capture and manage digital signatures for work verification.
Providers often need to capture signatures (from site contacts) to prove work completion. Digital signatures are stored and accessible via the API.
GET /workorders/{id}/signatures
{
"results": [
{
"id": 101,
"name": "John Doe",
"data": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...",
"created": { "utc": "2024-01-15 14:00:00" }
}
]
}Signatures are typically captured via the provider mobile app, but can also be created via API.
POST /workorders/{id}/signatures
{
"name": "John Doe",
"title": "Store Manager",
"signature": "data:image/png;base64,..."
}DELETE /workorders/{id}/signatures/{signature_id}
Deleting signatures should only be done when erroneous. They are often required for compliance and audit purposes.
You can require signatures as part of the work order configuration:
{
"requirements": {
"signature_required": true,
"signature_count": 1
}
}When marking work as complete, the system verifies:
Last updated on