Create a job type
createJobTypeAdd a new job type to the business catalog, specifying a required name and optional active/inactive status. An idempotency key makes retries safe by preventing duplicate entries.
Instructions
Create a job type
Adds a new job type to the business catalog
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Job-type name (required) — what the booking form shows as the kind of work. Stored as the canonical English value; per-locale names are a dashboard authoring feature. | |
| status | No | Lifecycle status. Defaults to active; inactive types cannot be selected for new job requests. | |
| idempotency_key | No | Unique key making retries safe: a repeat send with the same key replays the original response (header Idempotent-Replayed: true) instead of re-running the operation. Reusing a key with a different body returns 422 IDEMPOTENCY_KEY_REUSE. (sent as the Idempotency-Key header) |