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://example.com/api/job-forms"
{  "success": true,  "data": {    "jobForms": [      {        "id": "string",        "name": "string",        "description": "string",        "fields": [          {}        ]      }    ]  }}

On this page