Skip to main content
POST
/
api
/
v1
/
budget
Create Budget
curl --request POST \
  --url https://staging.cutmake.ai/api/v1/budget \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "budgetType": "<string>",
  "amount": 123,
  "salesOrderId": "<string>",
  "managementAccountId": "<string>",
  "utilizedAmount": 0,
  "periodStart": "<string>",
  "periodEnd": "<string>",
  "refreshFrequency": "<string>",
  "status": "<string>",
  "notes": "<string>",
  "code": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "budgetType": "<string>",
  "amount": 123,
  "utilizedAmount": 123,
  "code": "<string>",
  "salesOrderId": "<string>",
  "managementAccountId": "<string>",
  "periodStart": "<string>",
  "periodEnd": "<string>",
  "refreshFrequency": "<string>",
  "status": "<string>",
  "notes": "<string>",
  "createdAt": "<string>",
  "totalAmount": 123
}

Body

application/json
name
string
required
budgetType
string
required
amount
number
required
salesOrderId
string | null
managementAccountId
string | null
utilizedAmount
number | null
default:0
periodStart
string | null
periodEnd
string | null
refreshFrequency
string | null
status
string | null
notes
string | null
code
string | null

Response

Successful Response

id
string
required
name
string
required
budgetType
string
required
amount
number
required
utilizedAmount
number
required
code
string | null
salesOrderId
string | null
managementAccountId
string | null
periodStart
string | null
periodEnd
string | null
refreshFrequency
string | null
status
string | null
notes
string | null
createdAt
string | null
totalAmount
number | null