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
Send your key on the Authorization header here
This is a legacy route rather than a /api/v1/... one, and it authenticates
slightly differently. Your fc_live_ key does work — it authenticates as the
user who created it — but only when sent on the Authorization header:
curl https://api.fieldcamp.ai/api/job-forms \
-H "Authorization: Bearer fc_live_..."X-Api-Key is not read on these routes, and per-key scopes are not enforced
here — the key acts with its creator's own access. On the /api/v1/... routes
both header forms work and scopes are checked, so prefer a v1 endpoint whenever
one exists for what you need.
/api/job-formsAuthorization
BearerAuth Your FieldCamp API key (starts with fc_live_). Send it as Authorization: Bearer fc_live_… — or as the X-Api-Key: fc_live_… header. Create a key in Settings → API. This is an API key, not a login JWT.
In: header
Query Parameters
Response Body
application/json
curl -X GET "https://example.com/api/job-forms"{ "success": true, "message": "string", "data": null}