get

request
GET /api/v2/legal-entities/99999/tax HTTP/1.1
Table 218. /api/v2/legal-entities/{legalEntityId}/tax
Parameter Description

legalEntityId

id юр. лица

response
HTTP/1.1 200 OK

[ {
  "id" : 5555,
  "legalEntityId" : 99999,
  "startOn" : "2024-01-01",
  "endOn" : "2024-04-30",
  "createdAt" : "2024-01-01T00:00:00",
  "vat" : "NORMAL"
}, {
  "id" : 5554,
  "legalEntityId" : 99999,
  "startOn" : "2024-05-01",
  "endOn" : null,
  "createdAt" : "2024-01-01T00:00:00",
  "vat" : "NON_TAXABLE"
} ]
Table 219. response description
Path Type Description

id

Number

id

legalEntityId

Number

id юр. лица

startOn

String

Дата начала

endOn

String

Дата окончания

createdAt

String

Дата создания

vat

String

НДС

update

request
PUT /api/v2/legal-entities/99999/tax HTTP/1.1

{
  "vat" : "NORMAL",
  "startOn" : "2025-08-27"
}
Table 220. /api/v2/legal-entities/{legalEntityId}/tax
Parameter Description

legalEntityId

id юр. лица

Path Type Description Constraints

startOn

String

Дата начала

Must not be null

vat

String

НДС

Must not be null

response
HTTP/1.1 200 OK

{
  "id" : 25,
  "legalEntityId" : 99999,
  "startOn" : "2025-08-27",
  "endOn" : null,
  "createdAt" : "2025-08-27T07:22:48.242179073",
  "vat" : "NORMAL"
}
Table 221. response description
Path Type Description

id

Number

id

legalEntityId

Number

id юр. лица

startOn

String

Дата начала

endOn

String

Дата окончания

createdAt

String

Дата создания

vat

String

НДС

delete

request
DELETE /api/v2/legal-entities/tax/26 HTTP/1.1
Table 222. /api/v2/legal-entities/tax/{taxId}
Parameter Description

taxId

id записи налогообложения

response
HTTP/1.1 200 OK