# `api.jobs.on_hold.get_followup_user` > `GET /job/{jobDisplayId}/onhold/followupuser/{contactId}` — ACPortal **Python** ```python api.jobs.on_hold.get_followup_user(job_display_id: int, contact_id: str) -> OnHoldUser ``` **CLI** ```bash ab jobs on_hold get_followup_user ``` Resolve one follow-up user by contact ID. ## Response Returns `OnHoldUser`. | Field | Type | Required | Description | |---|---|---|---| | `contactId` | `Optional[int]` | no | Contact ID | | `name` | `Optional[str]` | no | User name | | `email` | `Optional[str]` | no | User email | | `fullName` | `Optional[str]` | no | Full display name | | `jobRelation` | `Optional[str]` | no | Relation to the job (e.g. Pickup Agent, Owner) | --- [← Back to api.jobs](../jobs.md)