- Auth Request
- Document Management
- Validate Documents
- Delivery Service
- Create Document JSONPOST
- List SellersGET
- Create Tax InvoicePOST
- Update Tax InvoicePUT
- Create Debit NotePOST
- Create Credit NotePOST
- Create InvoicePOST
- Create ReceiptPOST
- Create Invoice and Tax InvoicePOST
- Create Receipt and Tax InvoicePOST
- Create Delivery Order and Tax InvoicePOST
- Create Abbreviated Tax InvoicePOST
- Create Receipt Abbreviated Tax InvoicePOST
- Document Raw DataPOST
- Download DocumentPOST
- Download Document By IdGET
- Get Batch By IdGET
- List ProvincesGET
- List DistrictsGET
- List Sub DistrictsGET
- List PostsGET
Create Abbreviated Tax Invoice
POST
https://api.gofive.co.th/etaxgo/Documents/AbbreviatedTaxInvoice
Documents
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Ocp-Apim-Subscription-Key
string
required
Example:
รหัส subscription key ของลูกค้า
Content-Type
string
optional
Example:
application/json
Body Params application/json
SellerKey
string
required
BranchCode
string
required
DocumentNo
string
required
CreatedDate
string
required
IssueDateTime
string
required
TemplateToken
string
required
ItemProducts
array [object {11}]
required
Number
string
required
ProductCode
string
required
ProductName
string
required
Quantity
string
required
UnitName
string
required
PricePerItem
string
required
Discount
string
required
PercentVat
string
required
TotalAmount
string
required
TotalVatAmount
string
required
TotalNetAmount
string
required
IncludedVat
boolean
required
OriginalAmount
string
required
DifferenceAmount
string
required
TotalItemAmount
string
required
TaxBasisTotalAmount
string
required
TaxTotalAmount
string
required
GrandTotal
string
required
DisCount
object
required
Description
string
required
Amount
string
required
PdfFile
string
optional
Example
{
"SellerKey": "9876543210987",
"BranchCode": "00000",
"DocumentNo": "XYZ987654321",
"CreatedDate": "2025-01-01T12:00:00",
"IssueDateTime": "2025-01-01T14:00:00",
"TemplateToken": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"ItemProducts": [
{
"Number": "1",
"ProductCode": "001",
"ProductName": "oneone",
"Quantity": "100",
"UnitName": "Unit",
"PricePerItem": "99",
"Discount": "0",
"PercentVAT": "7",
"TotalAmount": "9900",
"TotalVATAmount": "693",
"TotalNetAmount": "10593"
}
],
"IncludedVAT": false,
"OriginalAmount": "10700",
"DifferenceAmount": "800",
"TotalItemAmount": "9900",
"TaxBasisTotalAmount": "800",
"TaxTotalAmount": "56.00",
"GrandTotal": "856",
"DisCount": {
"Description": "ส่วนลดพิเศษ",
"Amount": "10.00"
},
"PdfFile": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.gofive.co.th/etaxgo/Documents/AbbreviatedTaxInvoice' \
--header 'Ocp-Apim-Subscription-Key: รหัส subscription key ของลูกค้า' \
--header 'Content-Type: application/json' \
--data-raw '{
"SellerKey": "9876543210987",
"BranchCode": "00000",
"DocumentNo": "XYZ987654321",
"CreatedDate": "2025-01-01T12:00:00",
"IssueDateTime": "2025-01-01T14:00:00",
"TemplateToken": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"ItemProducts": [
{
"Number": "1",
"ProductCode": "001",
"ProductName": "oneone",
"Quantity": "100",
"UnitName": "Unit",
"PricePerItem": "99",
"Discount": "0",
"PercentVAT": "7",
"TotalAmount": "9900",
"TotalVATAmount": "693",
"TotalNetAmount": "10593"
}
],
"IncludedVAT": false,
"OriginalAmount": "10700",
"DifferenceAmount": "800",
"TotalItemAmount": "9900",
"TaxBasisTotalAmount": "800",
"TaxTotalAmount": "56.00",
"GrandTotal": "856",
"DisCount": {
"Description": "ส่วนลดพิเศษ",
"Amount": "10.00"
},
"PdfFile": "string"
}'
Responses
🟢200Success
application/json
Body
status
object
required
isSuccess
boolean
required
data
object
required
validate
boolean
required
validateEmail
boolean
required
validateSms
boolean
required
warningMessage
string
required
pdf
string
required
isSuccess
boolean
required
Example
{
"status": {
"isSuccess": true
},
"data": {
"validate": true,
"validateEmail": true,
"validateSms": true,
"warningMessage": "",
"pdf": "",
"isSuccess": true
}
}
🟠401Unauthorized
🟠401User authentication required V2.
Modified at 2025-01-23 04:39:08