implemented all controller/service verbs

This commit is contained in:
Joe Arndt 2025-12-11 22:33:29 -06:00
parent 085e84b086
commit f150fe84f2
9 changed files with 246 additions and 65 deletions

View file

@ -0,0 +1,23 @@
meta {
name: LOC POST Expense Full
type: http
seq: 4
}
post {
url: {{localBaseUrl}}/expenses
body: json
auth: inherit
}
body:json {
{
"date": "2025-12-01",
"cents": 987,
"categoryId": "1",
"merchantId": "1",
"subcategoryIds": ["1","2"],
"tagIds": ["1","2"],
"description": "NEW FULL expense"
}
}