# Create an placement Endpoint: POST /api/v1/placements Version: 0.0.1 Security: bearerAuth ## Request fields (application/json): - `employee_id` (string, required) - `employer_id` (string,null) - `client_id` (string,null) - `job_id` (string,null) - `custom_attributes` (object,null) Custom attributes - `create_tasks` (boolean,null) Create tasks for this placement ## Response 201 fields (application/json): - `id` (string, required) - `employee_id` (string, required) - `employer_id` (string,null, required) - `client_id` (string,null, required) - `job_id` (string,null, required) - `custom_attributes` (object, required) Custom attribute values - `missing_task_count` (number, required) - `progress` (object, required) - `progress.forms_required` (number, required) - `progress.forms_completed` (number, required) - `form_requirements` (array, required) - `form_requirements.task_id` (string,null, required) - `form_requirements.form` (object, required) - `form_requirements.form.name` (string, required) - `form_requirements.form.tags` (array, required) - `created_at` (string, required) ## 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) ## Response 409 fields (application/json): - `message` (string, required) Enum: "Placement already exists"