# `api.jobs.transfer` > `POST /job/transfer/{jobDisplayId}` — ACPortal **Python** ```python api.jobs.transfer(job_display_id: int, franchisee_id: str) -> None ``` **CLI** ```bash ab jobs transfer ``` POST /job/transfer/{jobDisplayId} (ACPortal) Args: job_display_id: Job to transfer. franchisee_id: Target franchisee — accepts a company code (e.g. ``"9999AZ"``) or UUID. ## Request body — `TransferModel` | Field | Type | Required | Description | |---|---|---|---| | `franchiseeId` | `str` | yes | Target franchisee company UUID | ## Response No response body. --- [← Back to api.jobs](../jobs.md)