Gofive OpenAPI
empeoVenioeTaxGo
empeoVenioeTaxGo
  1. Deal
  • Introduction
  • Activity
    • Get a Activity
      GET
    • Activities Enquiry
      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
  • Case
    • Add Case
      POST
    • Edit Case by CaseNo
      PUT
    • Get Case by CaseNo
      GET
    • Get Case Categories
      GET
  • 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
  1. Deal

Get Deal Stage

Developing
GET
https://api.gofive.co.th/v1/deals/stages

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
boardId
integer 
optional
your board Id
Header Params
Ocp-Apim-Subscription-Key
string 
optional
Example:
<Your-Subscription-Key>
Content-Type
string 
optional
Example:
application/json

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 GET 'https://api.gofive.co.th/v1/deals/stages?boardId' \
--header 'Ocp-Apim-Subscription-Key: <Your-Subscription-Key>' \
--header 'Content-Type: application/json'

Responses

🟢200Success
application/json
Body
data
array [object {4}] 
required
id
integer 
required
stageName
string 
required
ชื่อสถานะดีล
stageType
integer 
required
ประเภทสถานะดีล
seq
integer 
required
สำดับของสถานะ
statusCode
integer 
required
httpStatusCode
integer 
required
สถานะ code ของ httpเช่น 200 Ok 201 Created 400 BadRequest 401 Unauthorized 403 Forbidden 404 Record not found 500 Internal Server Error
Example
{
  "data": [
    {
      "id": 701,
      "stageName": "Open",
      "stageType": 2,
      "seq": -2
    },
    {
      "id": 702,
      "stageName": "InProgress",
      "stageType": 2,
      "seq": -1
    },
    {
      "id": 703,
      "stageName": "Won",
      "stageType": 2,
      "seq": 97
    },
    {
      "id": 704,
      "stageName": "Missed",
      "stageType": 2,
      "seq": 98
    }
  ],
  "statusCode": 1000,
  "httpStatusCode": 200
}
🟠401User authentication required V2.
Previous
Get Deal Board
Next
Get Deal Interest
Built with