- 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 Response Webhook
Developing
POST
api/v0/purchase-order/resp-status-change
Request
Body Params application/json
b2bIds
object
required
buyerB2BId
string
required
supplierB2BId
string
required
resp
object
required
reqMsgId
string
required
result
string
required
errorCd
string
required
errorDtl
string
required
errorField
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
{
"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"
}
]
}
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/resp-status-change' \
--header 'Content-Type: application/json' \
--data-raw '{
"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"
}
]
}'
Responses
🟢200Success
application/json
Body
payload
string
required
response_code
integer
required
response_message
string
required
Example
{
"payload": "SUCCESS",
"response_code": 0,
"response_message": "SUCCESS"
}
Modified at 2025-07-06 06:29:24