Gofive OpenAPI
empeoVenioeTaxGo
empeoVenioeTaxGo
  1. Deal
  • 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
    • Get a Customer By CustomerCode
      GET
    • Customers Enquiry
      POST
    • 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
  • Case
    • Add Case
    • Edit Case by CaseNo
    • Get Case by CaseNo
    • Get Case Categories
  • Contract
    • Get Contract By No
    • Get Contract Types
    • Get Contract Templates
    • Create or Update Contract
    • Create or Update Contract Service Agreement
    • Send Contract Document
  • Deal
    • Create Deal
      POST
    • Update Deal
      PUT
    • Deal Enquiry
      POST
    • Get Deal
      GET
    • Get Deal Board
      GET
    • Get Deal Stage
      GET
    • Get Deal Interest
      GET
    • Get DealLabel
      GET
    • Get Deal Missed Reason Categories
      GET
  • Employee
    • Employees Enquiry
    • Get a Employee
  • Expense
    • Create Expense
    • Update Expense
    • Expense Enquiry
    • Get a Expense
  • 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
    • /v3/Products/serials/status
    • Create or Update Codeguard Products
    • Update Product Stock
    • /v1/products/units
    • /v1/products/units Copy
  • Quotation
    • Create Update Quotation
    • Convert Quotation To SalesOrder
    • Quotation Enquiry
    • Get a Quotation By QuotationNo
    • Cancel Quotation
  • SalesOrder
    • Create Or Update SalesOrder
    • Get a SalesOrders By Id
    • Get a SalesOrder By SalesOrderNo
    • Get Sale Order Attachment
    • Reject SaleOrder
    • Approve Sale Order
    • Update SalesOrder Payment
    • Update SalesOrder Tracking Number
  • Webhooks
    • Webhook Payload
  • Task
    • CreateTask
  • Setting
    • Get HeaderTemplate
  • Chat
    • Post Send message
  • Storage
    • Upload files attachments
    • Get file attachments
    • Delete file attachments
  1. Deal

Deal Enquiry

POST
https://api.gofive.co.th/v1/deals/enquiry
ดึงข้อมูล deal หลายชุด

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
    "pageLength": 10,
    "dealStageIds": [
        1
    ],
    "keyword": "string",
    "skip": 3,
    "orderBy": "string"
}

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/deals/enquiry' \
--header 'Ocp-Apim-Subscription-Key: <Your-Subscription-Key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "pageLength": 10,
    "dealStageIds": [
        1
    ],
    "keyword": "string",
    "skip": 3,
    "orderBy": "string"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "data": {
        "value": [
            {
                "lastDealsState": {
                    "stateNameTH": "string",
                    "stateNameEN": "string"
                },
                "labelName": "string",
                "isEdit": true,
                "dealsId": 1,
                "dealNo": "string",
                "dealsName": "string",
                "customerId": 1,
                "customerName": "string",
                "customerCode": "string",
                "dealsValue": 456,
                "statusId": 1,
                "statusName": "string",
                "notes": "string",
                "dealQuantity": 456,
                "quantity": 456,
                "dealMeasure": 3,
                "dealMeasureUnit": {
                    "unitId": 3,
                    "name": "ด้าม",
                    "companyId": 1,
                    "isActive": true,
                    "createdByUserId": "string",
                    "dateCreated": "2019-12-11T11:09:01+0700",
                    "modifiedByUserId": "string",
                    "dateModified": "2019-12-11T11:09:01+0700"
                },
                "measure": 3,
                "measureUnit": {
                    "unitId": 3,
                    "name": "ด้าม",
                    "companyId": 1,
                    "isActive": true,
                    "createdByUserId": "string",
                    "dateCreated": "2019-12-11T11:09:01+0700",
                    "modifiedByUserId": "string",
                    "dateModified": "2019-12-11T11:09:01+0700"
                },
                "probability": 100,
                "assignToUserId": "string",
                "assignToUser": {
                    "userId": "string",
                    "fullname": "string",
                    "dateCreated": "2018-11-05T10:13:59+0700",
                    "dateModified": "2023-01-13T10:26:26+0700",
                    "level": 0
                },
                "dealsDate": "2023-01-17T13:22:52+0700",
                "expectedCloseDate": "2023-01-17T13:22:52+0700",
                "dateCreated": "2023-01-17T13:24:16+0700",
                "createByUserId": "string",
                "dateModified": "2023-01-17T15:18:36+0700",
                "modifiedByUserId": "string",
                "pictureUrl": "string"
            }
        ],
        "statusCode": 200
    },
    "statusCode": 1000,
    "httpStatusCode": 200
}
🟠401Unauthorized
🟠403Forbidden
🟢200Bad Request
🟠401User authentication required V2.
Modified at 2024-08-22 10:38:43
Previous
Update Deal
Next
Get Deal
Built with