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"
}
'{
"code": 200,
"timestamp": 1708926739000,
"transaction_id": "c01f847c-c42e-4577-9d01-a7208401a922",
"data": {
"@entity": "in.co.sandbox.tds.reports.job",
"job_id": "c01f847c-c42e-4577-9d01-a7208401a922",
"tan": "AHMA09719B",
"quarter": "Q3",
"form": "26Q",
"financial_year": "FY 2023-24",
"previous_receipt_number": "123456789012345",
"status": "created",
"created_at": 1708926739000,
"json_url": "https://test-api.sandbox.co.in/tds/reports/in-co-sandbox-tds-reports-test/tan/financial_year/quarter/80716d9a-4aa0-4905-8ff1-0aca61042a0e.json"
}
}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"
}
'{
"code": 200,
"timestamp": 1708926739000,
"transaction_id": "c01f847c-c42e-4577-9d01-a7208401a922",
"data": {
"@entity": "in.co.sandbox.tds.reports.job",
"job_id": "c01f847c-c42e-4577-9d01-a7208401a922",
"tan": "AHMA09719B",
"quarter": "Q3",
"form": "26Q",
"financial_year": "FY 2023-24",
"previous_receipt_number": "123456789012345",
"status": "created",
"created_at": 1708926739000,
"json_url": "https://test-api.sandbox.co.in/tds/reports/in-co-sandbox-tds-reports-test/tan/financial_year/quarter/80716d9a-4aa0-4905-8ff1-0aca61042a0e.json"
}
}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?