Skip to main content
POST
/
v1
/
organizations
/
{organization_id}
/
workspaces
/
{workspace_id}
/
recommended-actions
/
bulk-save-to-plan
Bulk save recommended actions to My Plan
curl --request POST \
  --url https://api.shareofmodel.ai/v1/organizations/{organization_id}/workspaces/{workspace_id}/recommended-actions/bulk-save-to-plan \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
'
{
  "succeeded": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "skipped": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

organization_id
string<uuid>
required

Organization identifier

workspace_id
string<uuid>
required

Workspace identifier

Body

ids
string<uuid>[]
required

List of recommended action UUIDs to save to My Plan

Response

Partial-success result. succeeded lists IDs moved to My Plan; skipped lists IDs that were ineligible (already_confirmed, already_dismissed) or not_found.

succeeded
string<uuid>[]
required

IDs that were successfully moved to My Plan (workflow_status set to confirmed)

skipped
object[]
required

IDs that were not processed and the reason why