# Set admin away mode **Set away mode** If you want to set an admin in away mode you can do this via a PUT request. You can also choose whether you want conversation replies to be automatically reassigned to your default inbox if you like. For more about away mode please see [**here**](https://docs.intercom.com/support-and-retain-customers/set-expectations/automatically-reassign-conversations-when-youre-away). | Attribute | Type | Description | | --- | --- | --- | | id | string | The id of the admin you want to set away mode or re-assign conversations. | | away_mode_enabled | boolean | Set to 'true' to change the status of the admin to away. | | away_mode_reassign | boolean | Set to 'true' to assign any new conversation replies to your default inbox. | ```curl $ curl https://api.intercom.io/admins/814860/away \\\n-X PUT \\\n-H 'Authorization: Bearer ' \\\n-H 'Accept: application/json' \\\n-H 'Content-Type: application/json' \\\n-d \t'\n{\n \"away_mode_enabled\": true,\n \"away_mode_reassign\": false\n\n}' ``` ```text HTTP/1.1 200 Ok\n\n{\n \"type\": \"admin\",\n \"id\": \"814860\",\n \"name\": \"Joe Example\",\n \"email\": \"email@example.com\",\n \"away_mode_enabled\": true,\n \"away_mode_reassign\": false,\n \"team_ids\": [\n 814865\n ]\n} ```