# Journey Status

Use the `updateJourneyStatusMutation` mutation to update the status of "day" on a journey.

| Argument    | Required | Type                                                                                                      |
| ----------- | -------- | --------------------------------------------------------------------------------------------------------- |
| `journeyId` | True     | [ProfileJourney ](https://docs.suggestic.com/graphql/queries/content/journey#currentjourneys)database id. |
| status      | True     | JourneyStatus enum. CLOSE, OPEN, FINISH                                                                   |

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

```graphql
mutation {
  updateJourneyStatus(
    journeyId: "UHJvZ3JhbTowYWQ0ZTc3YS04ZWRhLTRlOWItYWM4ZS0xYzg0YTJlOGJiNDI="
    status: FINISH
    ) {
    success
  }
}

```

{% endtab %}
{% endtabs %}
