curl --request POST \
--url https://api.sandbox.co.in/tds/reports/txt \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"@entity": "in.co.sandbox.tds.reports.request",
"financial_year": "FY 2024-25",
"form": "24Q",
"quarter": "Q1",
"tan": "AHMA09719B",
"previous_receipt_number": "123456789123456"
}
'Create a job to generate the TXT file required to prepare your TDS return
curl --request POST \
--url https://api.sandbox.co.in/tds/reports/txt \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"@entity": "in.co.sandbox.tds.reports.request",
"financial_year": "FY 2024-25",
"form": "24Q",
"quarter": "Q1",
"tan": "AHMA09719B",
"previous_receipt_number": "123456789123456"
}
'JWT access token
API key for identification
in.co.sandbox.tds.reports.request Financial Year for which TDS is being filed. (eg. FY 2024-25)
"FY 2024-25"
TDS return form
24Q, 26Q, 27Q Quarter for which TDS is being filed
Q1, Q2, Q3, Q4 TAN of deductor. Regular Expression: [A-Z]{4}[0-9]{5}[A-Z]{1}
[A-Z]{4}[0-9]{5}[A-Z]{1}"AHMA09719B"
Receipt Number of previously filed TDS Return
"123456789123456"
Was this page helpful?