---
title: "POST /blueprintactions/unsaved/{guid} - Blueprint Actions · RUAL Documentation"
description: "Save multiple unsaved blueprint actions to persistent storage with comprehensive change tracking and real-time broadcasting"
canonical: https://docs.rual.nl/cluster/api/blueprint-actions/blueprintactions-unsaved--guid-post
language: en
---

# POST /blueprintactions/unsaved/{guid}

Save multiple unsaved blueprint actions to persistent storage with comprehensive change tracking and real-time broadcasting

| Key | Type | Example | Description |
| --- | --- | --- | --- |
| **guid** required | `string` | `"example"` | Blueprint GUID to save actions for |

| Key | Type | Example | Description |
| --- | --- | --- | --- |
| **[authorization](https://docs.rual.nl/cluster/api#token-providing)** required | `string` | `"Bearer access_token"` | Access token |

| Key | Type | Example | Description |
| --- | --- | --- | --- |
| **commit_message** optional | `string` | `"example"` | Optional commit message for the save operation |
| **guids** required | `array` | ["a23575f49d0af385314c1f02280163374297e018a692e5e4ab85eb307ebf6ebc", ...] | Array of action GUIDs to save |
| **info_only** optional | `boolean` | `false` | If true, only returns info without actually saving |

```
{
  "blueprint_guid": "c45797061f2c15a75361042244385e96419d230ab804d7fa08cd52981fd78192",
  "change_doc": {
    "order_guid": "a23575f49d0af385314c1f02280163374297e018a692e5e4ab85eb307ebf6ebc",
    "retries": 0
  },
  "changes_id": "a23575f49d0af385314c1f02280163374297e018a692e5e4ab85eb307ebf6ebc",
  "updated": 1782166695
}
```

```
{
  "code": 401,
  "error": "INVALID_ACCESS_TOKEN"
}
```

| Status | Error Code | Description |
| --- | --- | --- |
| `401` | `INVALID_ACCESS_TOKEN` | Authentication required or invalid token |

| Permission | Description |
| --- | --- |
| `Bearer token` | Access token required via Authorization header, x-authtoken, x-token, query param, or cookie |
| `blueprintactions_update` | Required scope: blueprintactions_update |
