انتقل إلى المحتوى الرئيسي

Tax Report Layouts API

This API provides endpoints for managing tax report layouts, which define the structure of tax returns.

Get All Tax Report Layouts

Retrieves a list of all tax report layouts, with an option to filter for only active ones.

  • HTTP Method: GET
  • Path: /tax/tax-report-layouts

Parameters

NameTypeInDescription
active_onlybooleanqueryOptional. If true, returns only active layouts. Defaults to true.

Example Request

GET /tax/tax-report-layouts?active_only=true

Example Response

[
{
"id": "11111111-1111-1111-1111-111111111101",
"code": "UAE_VAT_201",
"description": "UAE Federal Tax Authority - VAT Return Form 201",
"country_code": "AE",
"is_active": true,
"version": "v1.0"
},
{
"id": "22222222-2222-2222-2222-222222222202",
"code": "SAU_VAT_RETURN",
"description": "Saudi Arabia GAZT VAT Return",
"country_code": "SA",
"is_active": true,
"version": null
}
]