> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Case

Create a new business object record.

<Note>
  External Documentation

  To learn more, visit the [Cherwell documentation](https://help.ivanti.com/ch/help/en_US/CSM/10.4/documentation_bundle/api/csm_api-swagger.html?Highlight=%2Fapi%2FV1%2Fsavebusinessobject#businessObjectSaveBusinessObjectV1).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter          | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
  | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Business Object ID | The ID of the business object type.<br /><br />Can be obtained from the `List Business Objects` action.                                                                                                                                                                                                                                                                                                                                                                                                                     |
  | Fields             | The fields to set on the new record, as a JSON array. For more information on fields refer to [Cherwell documentation](https://help.ivanti.com/ch/help/en_US/CSM/10.4/documentation_bundle/api/csm_api-swagger.html?Highlight=%2Fapi%2FV1%2Fsavebusinessobject#Trebuchet.WebApi.DataContracts.BusinessObject.FieldTemplateItem).<br /><br />**For example:**<br /><pre><code>\[<br />  \{<br />    "name": "ShortDescription", <br />    "value": "Cannot access VPN", <br />    "dirty": true<br />  }<br />]</code></pre> |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter                 | Description                                                                 |
  | ------------------------- | --------------------------------------------------------------------------- |
  | Business Object Public ID | The public ID of an existing record to base the new record on.              |
  | Business Object Record ID | The internal record ID of an existing record to base the new record on.     |
  | Cache Key                 | The key of the cache of a saved object.                                     |
  | Cache Scope               | Select the scope of the `Cache Key`.                                        |
  | Language                  | The culture code to localize the response with.                             |
  | Locale                    | The locale to localize the response with.                                   |
  | Persist                   | Select to save the record. When not selected, the record is only validated. |
</div>

## Example Output

```json theme={"dark"}
{
	"notificationTriggers": [
		{
			"sourceId": "sourceId",
			"sourceType": "sourceType",
			"sourceChange": "sourceChange",
			"key": "key"
		},
		{
			"sourceId": "sourceId",
			"sourceType": "sourceType",
			"sourceChange": "sourceChange",
			"key": "key"
		}
	],
	"busObPublicId": "busObPublicId",
	"cacheKey": "cacheKey",
	"errorMessage": "errorMessage",
	"errorCode": "errorCode",
	"hasError": true,
	"busObRecId": "busObRecId",
	"fieldValidationErrors": [
		{
			"errorCode": "errorCode",
			"error": "error",
			"fieldId": "fieldId"
		},
		{
			"errorCode": "errorCode",
			"error": "error",
			"fieldId": "fieldId"
		}
	],
	"httpStatusCode": "Continue"
}
```

## Workflow Library Example

[Create Case with Cherwell and Send Results Via Email](https://library.blinkops.com/workflows/create-case-with-cherwell-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/create-case-with-cherwell-and-send-results-via-email/canvas" />
</div>
