> ## 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.

# Add Budget Category

Add a new budget category or update an existing one.

The following scopes are required to run this action:

* `budgetitem.write`

<Note>
  External Documentation

  To learn more, visit the [SAP Concur documentation](https://developer.concur.com/api-reference/budget/v4.budget-category.html#post-a-budget-category-).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter     | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
  | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Description   | The description of the new budget category.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
  | Expense Types | A comma-separated list of expense types that the budget category matches.<br /><br />For example:<br /><pre><code>\[<br />    \{<br />      "id": "e1dd44da-25b4-4180-8d89-00f3a8d8cf4e",<br />      "featureTypeCode": "EXPENSE",<br />      "expenseTypeCode": "ADVT",<br />      "name": null<br />    },<br />    \{<br />      "id": "67253ac1-77e0-4d61-a478-0d194611b320",<br />      "featureTypeCode": "PAYMENT\_REQUEST",<br />      "expenseTypeCode": "ADVT",<br />      "name": null<br />    }<br />  ]</code></pre><br />For more information about the `Expense Types` parameter, refer to [SAP Concur API documentation](https://api.sap.com/api/ConcurSharedBudget/path/saveBudgetCategoryUsingPOST). |
  | Name          | The name of the new budget category.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
  | Status Type   | The status type of the new budget category.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                        |
  | --------- | ---------------------------------- |
  | ID        | The ID of the new budget category. |
  | Sync Guid | The ID of the budget category.     |
</div>

## Example Output

```json theme={"dark"}
{
	"name": "Advertising Category",
	"description": "Advertising",
	"id": "d9fd5191-7016-4f50-a6c8-4770bddc01d8",
	"statusType": "OPEN",
	"expenseTypes": [
		{
			"id": "e1dd44da-25b4-4180-8d89-00f3a8d8cf4e",
			"featureTypeCode": "EXPENSE",
			"expenseTypeCode": "ADVT",
			"name": null
		},
		{
			"id": "67253ac1-77e0-4d61-a478-0d194611b320",
			"featureTypeCode": "PAYMENT_REQUEST",
			"expenseTypeCode": "ADVT",
			"name": null
		}
	]
}
```

## Workflow Library Example

[Add Budget Category with Sap Concur and Send Results Via Email](https://library.blinkops.com/workflows/add-budget-category-with-sap-concur-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/add-budget-category-with-sap-concur-and-send-results-via-email/canvas" />
</div>
