Request
[GET] /api/v1/invoice/get-list-tax
Content-Type: application/json
x-client-id: <client_id>
x-signature: <signature>
x-timestamp: <timestamp>
Response
Content-Type: application/json
Body
Name | Type | Description |
---|---|---|
id | uuid.UUID | ID |
name | string | |
business_id | uint64 | |
name | string | |
rate | string | |
description | string | |
account_id | uint64 |
Errors
Status | Messsage |
---|---|
200 | Success |
401 | Unauthorized |
Example
Request
[GET] /api/v1/invoice/get-list-tax
Response
{
"message": {
"content": "Thực thi API thành công"
},
"code": 102000,
"request_id": "7a95a9c6-28a6-4daf-8da5-45587335f7e4",
"data": [
{
"id": "9497360a-9e04-4967-9ed1-7e29cf36ef7a",
"created_at": "2024-08-14T10:43:58.59458+07:00",
"updated_at": "2024-08-14T10:43:58.598454+07:00",
"business_id": 241,
"name": "VAT 10",
"rate": 10,
"description": "",
"account_id": 1007792
},
{
"id": "65c0118f-380c-4904-86c3-97f87412a1c6",
"created_at": "2024-08-14T10:43:58.583121+07:00",
"updated_at": "2024-08-14T10:43:58.590724+07:00",
"business_id": 241,
"name": "VAT 8",
"rate": 8,
"description": "",
"account_id": 1007791
}
]
}