- Introduction
- Activity
- Authentication API
- Customer
- Case
- Deal
- Employee
- 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
- SalesOrder
- Webhooks
- Task
- Setting
Update SalesOrder Payment
Developing
PUT
https://api.gofive.co.th/v2/salesorder/{salesOrderNo}/payment
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
salesOrderNo
string
required
Example:
SO24090001
Body Params application/json
payments
array [object {2}]
required
InstallmentNumber
integer
required
status
enum<integer>
required
Allowed values:
12
Example
{
"payments": [
{
"periodNo": 1,
"status": 2
},
{
"periodNo": 2,
"status": 1
}
]
}
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 PUT 'https://api.gofive.co.th/v2/salesorder/SO24090001/payment' \
--header 'Content-Type: application/json' \
--data-raw '{
"payments": [
{
"periodNo": 1,
"status": 2
},
{
"periodNo": 2,
"status": 1
}
]
}'
Responses
🟢200Success
application/json
Body
status
object
required
code
string
required
description
string
required
data
boolean
required
Examples
{
"status": {
"code": "1000",
"description": "Success"
},
"data": true
}
🟠400Bad Request
🟠401User authentication required V2.
Modified at 2024-09-05 07:26:13