- 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
Validate Documents Json
POST
https://api.gofive.co.th/etaxgo/Documents/Validations/Json
ETaxGo
Request
Body Params application/json
deliveryModels
array[object (DeliveryModel) {3}] | null
optional
deliveryInfo
object (DeliveryInfo)
optional
documents
array[object (Document) {2}] | null
optional
eTaxNo
string | null
optional
Example
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/Validations/Json' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
Validate
boolean
required
ErrorMessage
string
required
Items
array [object {6}]
required
Validate
boolean
optional
ValidateEmail
boolean
optional
ValidateSms
boolean
optional
ErrorMessage
string
optional
WarningMessage
string
optional
DocumentNo
string
optional
Example
{
"validate": true,
"errorMessage": "",
"items": [
{
"validate": true,
"validateEmail": true,
"validateSms": true,
"errorMessage": "",
"warningMessage": "",
"documentNo": "123456789AB"
}
]
}
🟠401Unauthorized
🟠403Forbidden
🟠401User authentication required V2.
Modified at 2025-01-02 07:49:27