# Delete a job Endpoint: DELETE /api/v1/jobs/{id} Version: 0.0.1 Security: bearerAuth ## Path parameters: - `id` (string, required) ## Response 200 fields (application/json): - `id` (string, required) - `name` (string, required) - `address` (object,null) - `address.street` (string, required) - `address.secondary` (string,null) - `address.city` (string, required) - `address.state` (string, required) - `address.zip` (string,null) - `address.country` (string, required) 3 letter country code - `address.full_address` (string,null) - `created_at` (string, required) - `updated_at` (string, required) - `custom_attributes` (object, required) Custom attribute values ## Response 400 fields (application/json): - `message` (string, required) ## Response 401 fields (application/json): - `message` (string, required) Enum: "Not authorized" ## Response 404 fields (application/json): - `message` (string, required) Enum: "Job not found"