get

request
GET /api/v2/legal-entities/99999/tax HTTP/1.1
Table 224. /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 225. 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-12-22"
}
Table 226. /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" : 14,
  "legalEntityId" : 99999,
  "startOn" : "2025-12-22",
  "endOn" : null,
  "createdAt" : "2025-12-22T10:39:29.660416966",
  "vat" : "NORMAL"
}
Table 227. 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/15 HTTP/1.1
Table 228. /api/v2/legal-entities/tax/{taxId}
Parameter Description

taxId

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

response
HTTP/1.1 200 OK