curl --request POST \
--url https://api.ai2fin.com/api/category-sets/move-category \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"categoryId": "<string>",
"targetSetId": "<string>"
}
'{
"success": true,
"category": {
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"color": "<string>",
"isTaxDeductible": true,
"taxCategory": "<string>",
"defaultGstRate": 123
},
"message": "<string>"
}Move a category from one set to another.
curl --request POST \
--url https://api.ai2fin.com/api/category-sets/move-category \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"categoryId": "<string>",
"targetSetId": "<string>"
}
'{
"success": true,
"category": {
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"color": "<string>",
"isTaxDeductible": true,
"taxCategory": "<string>",
"defaultGstRate": 123
},
"message": "<string>"
}