Tax Refund Method Resource
Resource representing how a tax refund should be delivered.
A tax refund method specifies how a tax refund should be delivered to a client. There are two types of refund methods:
- Personal refund methods for individual tax returns
- Business refund methods for business tax returns
Each refund method specifies a delivery method, which can be:
- Direct deposit to a bank account
- Physical check delivery
- Future tax credit (business refunds only)
Endpoints
Method | Url |
---|---|
GET | /v1.0/tax-refund-methods/:id |
GET | /v1.0/jobs/:job_id/personal-refund-method |
GET | /v1.0/jobs/:job_id/business-refund-method |
POST | /v1.0/users/:user_id/tax-refund-methods |
POST | /v1.0/tax-refund-methods/:id |
POST | /v1.0/jobs/:job_id/checklist/:supporting_item_id/provide-personal-refund-method |
POST | /v1.0/jobs/:job_id/checklist/:supporting_item_id/provide-business-refund-method |
Properties
Unique identifier for the tax refund method.
Version number of the tax refund method. Increments with each update.
ID of the user that owns this tax refund method.
ISO 8601 timestamp of when the tax refund method was created.
ISO 8601 timestamp of when the tax refund method was last updated.
Type of tax refund. Must be one of:
PERSONAL
- For individual tax returnsBUSINESS
- For business tax returns
Specification for how the refund should be delivered. Must contain exactly one of these properties:
direct_deposit
- Direct deposit to a bank accountcheck
- Physical check deliveryfuture_tax_credit
- Apply to future taxes (business refunds only)
Copied1{2 "id": "550e8400-e29b-41d4-a716-446655440000",3 "version": 1,4 "owner_user_id": "a385a314-12f9-4ee3-a838-c8785d5db610",5 "create_time": "2024-01-01T12:00:00Z",6 "update_time": "2024-01-01T12:00:00Z",7 "refund_type": "PERSONAL",8 "delivery_method": {9 "direct_deposit": {10 "bank_account": {11 "account_type": "CHECKING",12 "routing_number": "123456789",13 "account_number": "987654321"14 }15 }16 }17}
Direct deposit
Bank account details for direct deposit:
Type of bank account. Must be one of:
CHECKING
SAVINGS
Bank routing number.
Bank account number.
Check
Optional physical address where the check should be mailed. If not provided, the address from the client's personal or business profile will be used.
Future tax credit
Empty object indicating the refund should be applied to future taxes. Only available for business refunds.
Physical address
First line of the address.
Second line of the address.
City name.
Region (state/province/territory).
Postal code.
Country.