# Start Journeys

Use the `startJourneys` mutation to allow changing a user's day in the journey

## Required Arguments

| Argument       | Type    | Description                                                             |
| -------------- | ------- | ----------------------------------------------------------------------- |
| `daysUnlocked` | Int     | Number of days when the user already started the journey                |
| `override`     | Boolean | If true, the number of days unlocked can be updated using daysUnlocked. |

## Available Field

The following fields will be part of the response.

| Field name | Type   | Description                                                                     |
| ---------- | ------ | ------------------------------------------------------------------------------- |
| `sucess`   | String | **True** if the user journey has been updated. Otherwise, it displays **False** |
| `message`  | String | Description of the result                                                       |

## Example

{% tabs %}
{% tab title="Mutation" %}

```graphql
mutation {
  startJourneys(
    daysUnlocked: 2
    override: true
  ) {
    success
    message
  }
}

```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "startJourneys": {
      "success": true,
      "message": "User journeys updated"
    }
  }
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.suggestic.com/graphql/query/mutations/journey/start-journeys.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
