Gofive OpenAPI
empeoVenioeTaxGo
empeoVenioeTaxGo
  1. Quotation
  • 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
      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
  • 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
  • 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
      POST
    • Convert Quotation To SalesOrder
      POST
    • Quotation Enquiry
      POST
    • Get a Quotation By QuotationNo
      GET
    • Cancel Quotation
      POST
  • 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. Quotation

Convert Quotation To SalesOrder

POST
https://api.gofive.co.th/v1/quotation/{quotationNo}/convert-to-salesorder
การเปลี่ยนใบเสนอราคาให้กล้ายเป็นใบสั่งขาย convert to salesorder

Request

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

Header Params

Body Params application/json

Example
{"QuotationNo":"<string>" //รหัสใบเสนอราคา required
}

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/quotation//convert-to-salesorder' \
--header 'Ocp-Apim-Subscription-Key: <Your Subscriptin-key>' \
--header 'Content-Type: application/json' \
--data-raw '{"QuotationNo":"<string>" //รหัสใบเสนอราคา required
}'

Responses

🟢200OK
application/json
Body

Example
{
    "status": {
        "code": "1000",
        "description": "Success"
    },
    "data": {
        "salesOrderSubject": "string",
        "salesOrderNo": "string",
        "salesOrderStatus": 2,
        "salesOrderDate": "2022-12-29T00:00:00+0700",
        "referenceNo": "string",
        "customerCode": "string",
        "contactId": 1,
        "recipientName": "string",
        "recipientAddress": "string",
        "headerTemplateId": 1,
        "salesorderDetails": [
            {
                "productCode": "string",
                "productName": "string",
                "price": 10,
                "qty": 6,
                "productUnitName": "ด้าม",
                "productDescription": "string",
                "discountValue": 1,
                "vatTaxValue": 3,
                "totalPrice": 59
            }
        ],
        "discountName": "string",
        "discountValue": 7,
        "discountType": false,
        "paymentTerm": "string",
        "remark": "string",
        "staffCode": "string",
        "salesOrderNote": "string",
        "currencyCode": "string",
        "vatCalculation": true,
        "subTotal": 59,
        "subTotalWithDiscount": 52,
        "totalVat": 1.56,
        "grandTotal": 53.56
    }
}
🟢200Bad Request
🟠401Unauthorized
Modified at 2023-02-08 04:59:06
Previous
Create Update Quotation
Next
Quotation Enquiry
Built with