Gofive OpenAPI
empeoVenioeTaxGo
empeoVenioeTaxGo
  1. Delivery Service
  • Auth Request
    • Auth Token
      POST
  • Document Management
    • Validate Documents
      • Validate Documents Json
    • Delivery Service
      • Delivery Service Resend
        POST
    • Create Document JSON
      POST
    • List Sellers
      GET
    • Create Tax Invoice
      POST
    • Update Tax Invoice
      PUT
    • Create Debit Note
      POST
    • Create Credit Note
      POST
    • Create Invoice
      POST
    • Create Receipt
      POST
    • Create Invoice and Tax Invoice
      POST
    • Create Receipt and Tax Invoice
      POST
    • Create Delivery Order and Tax Invoice
      POST
    • Create Abbreviated Tax Invoice
      POST
    • Create Receipt Abbreviated Tax Invoice
      POST
    • Document Raw Data
      POST
    • Download Document
      POST
    • Download Document By Id
      GET
    • Get Batch By Id
      GET
    • List Provinces
      GET
    • List Districts
      GET
    • List Sub Districts
      GET
    • List Posts
      GET
  1. Delivery Service

Delivery Service Resend

POST
https://api.gofive.co.th/etaxgo/Documents/Delivery/Resend
DocumentsDelivery
นำส่งเอกสารไปยังปลายทางอีกครั้งด้วยช่องทางที่กำหนด

Request

Header Params
Authorization
string 
required
ขอ Token ได้จาก authentication endpoint
Example:
Bearer token
Ocp-Apim-Subscription-Key
string 
optional
Body Params application/json
refNo
string 
required
เลขที่เอกสาร (กรณีใช้ custom อนุญาตให้ใส่ค่าว่างได้)
deliveryMethod
string 
required
ช่องทางการนำส่ง
E=Email
S=SMS
deliveryInfo
string 
required
ข้อมูลการนำส่ง อีเมลหรือหมายเลขโทรศัพท์ ตามช่องทางที่กำหนด
password
string 
optional
รหัสผ่านสำหรับเข้ารหัสไฟล์ใหม่ (กรณีไฟล์เดิมไม่มีการเข้ารหัสเท่านั้น)
custom
object 
optional
contractNo
string 
optional
เลขที่สัญญา
applyDate
string 
optional
วันที่ในรูปแบบ yyyy-MM-dd (ค.ส.)
Example
{
    "refNo": "string",
    "deliveryMethod": "string",
    "deliveryInfo": "string",
    "password": "string",
    "custom": {
        "contractNo": "string",
        "applyDate": "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/Delivery/Resend' \
--header 'Authorization: Bearer token' \
--header 'Ocp-Apim-Subscription-Key;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "refNo": "string",
    "deliveryMethod": "string",
    "deliveryInfo": "string",
    "password": "string",
    "custom": {
        "contractNo": "string",
        "applyDate": "string"
    }
}'

Responses

🟢200OK
application/json
Body
status
object 
required
code
string 
required
description
string 
required
isSuccess
boolean 
required
data
object 
required
documents
array [object {2}] 
required
รายการเอกสารที่จะถูกนำส่ง
Examples
{
    "status": {
        "code": "1000",
        "description": "Documents queued for delivery",
        "isSuccess": true
    },
    "data": {
        "documents": [
            {
                "documentNo": "T01234",
                "documentType": "388"
            },
            {
                "documentNo": "R01234",
                "documentType": "T01"
            }
        ]
    }
}
🟠401User authentication required V2.
Modified at 2025-01-02 07:50:03
Previous
Validate Documents Json
Next
Create Document JSON
Built with