API Sections Resource types Resource type Resources Resource Items (Budget) - GET
Update the budget item definition, the table below details the fields and their data type
URL : /v3/resource-types/{resource_type_id}/resources/{resource_id}/items/{item_id}
Method : PATCH
Fields :
Name | Type | Description |
---|---|---|
name | string | The name of the budget item |
account | string(UUID) | The UUID of the account the expense should be deducted from |
target_account | string(UUID) | The UUID of the account the savings should be added to |
description | string | A optional description of the budget item |
amount | decimal | The amount for the budget item |
category | string | The category for the budget item, allowable values income, fixed, flexible or savings |
start_date | date | The date from which the budget item is relevant |
end_date | date | The date from which the budget item is no longer relevant |
disabled | boolean | Whether the budget item is disabled |
frequency | json | The frequency definition for the budget item, how often it repeats |
Code : 204
No Content
Code : 404
Content :
{
"message": "Budget item can't be found."
}
Code : 403
Content :
{
"message": "Budget item can't be found or is not accessible to you."
}
Code : 400
Content :
{
"message": "Unable to handle your request, please include a request body."
}
Code : 422
Content :
{
"message": "Validation error.",
"fields": {
"name": {
"errors": [
"The frequency value must be valid json"
]
}
}
}