Skip to main content

When to use this

Use this mutation when you need to change details of an existing position (e.g., updating the job title or description).

GraphQL Request

Replace the id value with the ID of the position you want to update. If you don’t know how to get the ID, see Fetching Positions. Don’t forget to update the Hireflix API Key in the headers.

Explanation

  • id – unique identifier for the position.
  • name – title of the position (e.g. “Sales Manager”) you want to change./

Example Response

{
  "data": {
    "Position": {
      "save": {
        "id": "68b43e38b19cf131a17c543f",
        "name": "Social Media Manager Updated",
        "tags": [],
        "active": true,
        "archived": null
      }
    }
  }
}

Tips

  • **Partial updates: **You don’t need to send the full position, you can send just the ones you want to change.

Learn next?

Let’s learn how to archive a position.