- APIs
- Webhooks
- Business Onboarding
- Invoice
- Payment
- Credit Note
- Purchase Order
- Send Purchase Order Request WebhookPOST
- Send Purchase Order Response WebhookPOST
- Confirm Purchase Order Request WebhookPOST
- Confirm Purchase Order Response WebhookPOST
- Edit Purchase Order Request WebhookPOST
- Edit Purchase Order Response WebhookPOST
- Status Change Purchase Order Request WebhookPOST
- Status Change Purchase Order Response WebhookPOST
- Financing
Status Change Purchase Order Request Webhook
Developing
POST
api/v0/purchase-order/req-status-change
Request
Body Params application/json
device
object
required
tag
object
required
b2bIds
object
required
buyerB2BId
string
required
supplierB2BId
string
required
poStatus
object
required
objectId
string
required
buyerPONumber
string
required
objectVersion
object
required
buyerAction
string
required
buyerRemarks
string
required
poStatusTransition
object
required
additionalInfos
array [object {2}]
required
name
string
optional
value
string
optional
Example
{
"device": {
"tag": {
"name": "GEOCODE",
"value": "string"
}
},
"b2bIds": {
"buyerB2BId": "string",
"supplierB2BId": "string"
},
"poStatus": {
"objectId": "string",
"buyerPONumber": "string",
"objectVersion": {
"currentVersion": 0,
"newVersion": 0
},
"buyerAction": "string",
"buyerRemarks": "string",
"poStatusTransition": {
"currentStatus": "CREATED",
"newStatus": "CREATED"
}
},
"additionalInfos": [
{
"name": "string",
"value": "string"
}
]
}
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 POST 'api/v0/purchase-order/req-status-change' \
--header 'Content-Type: application/json' \
--data-raw '{
"device": {
"tag": {
"name": "GEOCODE",
"value": "string"
}
},
"b2bIds": {
"buyerB2BId": "string",
"supplierB2BId": "string"
},
"poStatus": {
"objectId": "string",
"buyerPONumber": "string",
"objectVersion": {
"currentVersion": 0,
"newVersion": 0
},
"buyerAction": "string",
"buyerRemarks": "string",
"poStatusTransition": {
"currentStatus": "CREATED",
"newStatus": "CREATED"
}
},
"additionalInfos": [
{
"name": "string",
"value": "string"
}
]
}'
Responses
🟢200Success
application/json
Body
response_message
string
required
response_code
integer
required
payload
object (StatusChangePurchaseOrderResponse)
required
b2bIds
object
required
resp
object
required
poStatus
object
required
additionalInfos
array [object {2}]
required
Example
{
"response_message": "string",
"response_code": 0,
"payload": {
"b2bIds": {
"buyerB2BId": "string",
"supplierB2BId": "string"
},
"resp": {
"reqMsgId": "string",
"result": "string",
"errorCd": "string",
"errorDtl": "string",
"errorField": "string"
},
"poStatus": {
"objectId": "string",
"buyerPONumber": "string",
"objectVersion": {
"currentVersion": 0,
"newVersion": 0
},
"buyerAction": "string",
"buyerRemarks": "string",
"poStatusTransition": {
"currentStatus": "string",
"newStatus": "string"
}
},
"additionalInfos": [
{
"name": "string",
"value": "string"
}
]
}
}
Modified at 2025-07-06 06:29:01