FieldCamp
Resources

Job Forms | FieldCamp API

Reusable form templates attached to jobs.

Job forms are reusable templates — checklists, condition reports, customer signoff forms — that you can attach to jobs or clients. The API exposes them as a list of IDs you pass in jobFormIds on NewJobData or NewClient.

Endpoints

GET/api/job-forms

Authorization

AuthorizationBearer <token>

Pass your JWT API key as Authorization: Bearer <token>. Send alongside X-API-Key: <token> for maximum compatibility.

In: header

Response Body

application/json

application/json

curl -X GET "https://api.fieldcamp.ai/api/job-forms"
{
  "success": true,
  "data": {
    "jobForms": [
      {
        "id": "string",
        "name": "string",
        "description": "string",
        "fields": [
          {}
        ]
      }
    ]
  }
}
{
  "success": false,
  "error": "Invalid or expired token"
}

On this page