Gofive OpenAPI
empeoVenio
eTaxGo
empeoVenio
eTaxGo
  1. Customer
  • Introduction
  • Activity
    • Activities Enquiry
      POST
    • Get a Activity By Id
      GET
    • Get a Activity By No
      GET
    • Get Key Activities
      GET
    • Create or Update Activity
      POST
  • Authentication API
    • Authorization
      POST
  • Customer
    • Create or Update customer
      POST
    • Customers Enquiry
      POST
    • Get a Customer By CustomerId
      GET
    • Get a Customer By CustomerCode
      GET
    • Get a Customer By CustomerName
      GET
    • Create Customer Satisfaction
      POST
    • Add Customer Event
      POST
    • Get Customer Events by Customer Code
      GET
    • Edit Customer Event
      PUT
    • Delete Customer Event
      DELETE
    • Get Customer Event Types
      GET
    • Get file categories
      GET
    • Attach files category
      POST
    • Customer Search
      POST
    • Customer Exist Check
      POST
    • Get Customer By TaxID
      GET
  • Case
    • Add Case
      POST
    • Edit Case by CaseNo
      PUT
    • Get Case by CaseNo
      GET
    • Get Case Categories
      GET
  • Contract
    • Get Contract By No
    • Get Contract Types
    • Get Contract Templates
    • Create or Update Contract
    • Create or Update Contract Service Agreement
    • Send Contract Document
  • Conversation
    • Conversation Enquiry
  • Expense
    • Create Expense
    • Update Expense
    • Expense Enquiry
    • Get a Expense
  • Deal
    • Create Deal
    • Update Deal
    • Deal Enquiry
    • Get Deal
    • Get Deal Board
    • Get Deal Stage
    • Get Deal Interest
    • Get DealLabel
    • Get Deal Missed Reason Categories
  • Employee
    • Employees Enquiry
    • Get a Employee
  • Product
    • Create Or Update Products
    • Get a Product Ticket
    • Get Products With Take & Status
    • Get a Product by ProductCode
    • Get Product Groups
    • Get Product Properties
    • Get Products By Filter
    • Verify Serial Number
    • Check Serial Verification Status
    • Create or Update Codeguard Products
    • Update Product Stock
    • Get Units
  • Quotation
    • Create Update Quotation
    • Convert Quotation To SalesOrder
    • Quotation Enquiry
    • Get a Quotation By QuotationNo
    • Cancel Quotation
    • Get Pdf By QuotationNo
  • SalesOrder
    • Create Or Update SalesOrder
    • Get a SalesOrder By Id
    • Get a SalesOrder By No
    • Get Sale Order Attachment by Id
    • Get Sale Order Attachment By No
    • Reject SaleOrder
    • Approve Sale Order
    • Update SalesOrder Payment
    • Get Pdf By SalesOrderNo
    • Update SalesOrder Tracking Number
  • Webhooks
    • Webhook Payload
  • Task
    • Task Enquiry
    • CreateTask
  • Setting
    • Get HeaderTemplate
  • Chat
    • Post Send message
  • Storage
    • Upload files attachments
    • Get file attachments
    • Delete file attachments
empeoVenio
eTaxGo
empeoVenio
eTaxGo
  1. Customer

Customer Exist Check

Developing
POST
https://api.gofive.co.th/v1/customers/exist
ใช้สำหรับตรวจสอบว่า “มีลูกค้านี้อยู่ในระบบแล้วหรือไม่”
ไม่ใช่เส้นสำหรับดึงรายละเอียด
ไม่ใช่เส้นสำหรับ search แบบ list ยาว

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Body Params application/jsonRequired

Example
{
    "customerCode": "",
    "customerName": "test",
    "customerTaxNo": "",
    "customerPhone": "",
    "customerMobile": "",
    "customerEmail": "",
    "contactName": "",
    "contactPhone": "",
    "contactMobile": "",
    "contactEmail": "",
    "matchMode": "STRICT",
    "take": 20,
    "skip": 20
}

Request Code 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/v1/customers/exist' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "customerCode": "",
    "customerName": "test",
    "customerTaxNo": "",
    "customerPhone": "",
    "customerMobile": "",
    "customerEmail": "",
    "contactName": "",
    "contactPhone": "",
    "contactMobile": "",
    "contactEmail": "",
    "matchMode": "STRICT",
    "take": 20,
    "skip": 20
}'

Responses

🟢200Success
application/json
Body

Example
{
    "exists": true,
    "matches": [
        {
            "customerId": 58,
            "customerCode": "C-2024-0003",
            "customerName": "คุณเอลวิรา เฟฮีย์ (Elvira Fahey)",
            "customerState": 1,
            "customerPhone": "096-769-0708",
            "customerEmail": "[email protected]",
            "customerTaxNo": "0105564000123",
            "membershipLevel": "Platinum",
            "lastActive": "2024-05-20T10:30:00Z"
        },
        {
            "customerId": 5,
            "customerCode": "C-2024-0004",
            "customerName": "คุณบอยด์ เวอัม (Boyd Veum)",
            "customerState": 1,
            "customerPhone": "096-769-0707",
            "customerEmail": "[email protected]",
            "customerTaxNo": "9083716047588",
            "membershipLevel": "Gold",
            "lastActive": "2024-05-18T14:15:00Z"
        }
    ]
}
🟠401User authentication required V2.
Modified at 2026-02-16 10:00:55
Previous
Customer Search
Next
Get Customer By TaxID
Built with