Field NationDeveloper Platform
Field NationDeveloper Platform
IntroductionQuick StartAPI Playground

Getting Started

API Reference

Overview
TasksCustom FieldsMilestonesTime LogsSignaturesCompliance
Work OrdersExecution

Signatures

Capture and manage digital signatures for work verification.


Signatures

Providers often need to capture signatures (from site contacts) to prove work completion. Digital signatures are stored and accessible via the API.

List Signatures

GET /workorders/{id}/signatures

Response

{
  "results": [
    {
      "id": 101,
      "name": "John Doe",
      "data": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...",
      "created": { "utc": "2024-01-15 14:00:00" }
    }
  ]
}

Create Signature

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 Signature

DELETE /workorders/{id}/signatures/{signature_id}

Deleting signatures should only be done when erroneous. They are often required for compliance and audit purposes.

Signature Requirements

You can require signatures as part of the work order configuration:

{
  "requirements": {
    "signature_required": true,
    "signature_count": 1
  }
}

Signature in Completion

When marking work as complete, the system verifies:

  • Required number of signatures captured
  • Signature names match expected contacts
  • Signature timestamp is within service window

Related

  • Tasks - Task completion requirements
  • Contacts - Site contacts who sign

Last updated on

Time Logs

Track provider work hours with check-in/check-out and manual entries.

Compliance

Enforce qualifications and skill requirements on work orders.

On this page

Signatures
List Signatures
Response
Create Signature
Delete Signature
Signature Requirements
Signature in Completion
Related