Skip to main content
POST
/
api
/
intelligent-tax-deduction
/
apply-results
Apply tax analysis results
curl --request POST \
  --url https://api.ai2fin.com/api/intelligent-tax-deduction/apply-results \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "results": [
    {
      "id": "<string>",
      "isTaxDeductible": true,
      "businessUsePercentage": 123,
      "confidence": 123,
      "reasoning": "<string>",
      "taxCategory": "<string>",
      "documentationRequired": [
        "<string>"
      ],
      "warnings": [
        "<string>"
      ],
      "suggestions": [
        "<string>"
      ]
    }
  ]
}'
{
  "success": true,
  "results": [
    {}
  ],
  "summary": {},
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

JWT token obtained from /api/auth/login endpoint

Body

application/json
results
object[]
required

Response

200 - application/json

Results applied

success
boolean
results
object[]
summary
object
message
string