- 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
Confirm Purchase Order Request Webhook
Developing
POST
api/v0/purchase-order/req-confirm
Request
Body Params application/json
device
object
required
tag
object
required
b2bIds
object
required
buyerB2BId
string
required
supplierB2BId
string
required
poConfirmation
object
required
objectId
string
required
buyerPONumber
string
required
supplierResponse
string
required
supplierRemarks
string
required
objectVersion
object
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"
},
"poConfirmation": {
"objectId": "string",
"buyerPONumber": "string",
"supplierResponse": "string",
"supplierRemarks": "string",
"objectVersion": {
"currentVersion": 0,
"newVersion": 0
},
"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-confirm' \
--header 'Content-Type: application/json' \
--data-raw '{
"device": {
"tag": {
"name": "GEOCODE",
"value": "string"
}
},
"b2bIds": {
"buyerB2BId": "string",
"supplierB2BId": "string"
},
"poConfirmation": {
"objectId": "string",
"buyerPONumber": "string",
"supplierResponse": "string",
"supplierRemarks": "string",
"objectVersion": {
"currentVersion": 0,
"newVersion": 0
},
"poStatusTransition": {
"currentStatus": "CREATED",
"newStatus": "CREATED"
}
},
"additionalInfos": [
{
"name": "string",
"value": "string"
}
]
}'
Responses
🟢200Success
application/json
Body
response_code
integer
required
response_message
string
required
payload
object (ConfirmPurchaseOrderResponse)
required
b2bIds
object
required
resp
object
required
poConfirmation
object
required
additionalInfos
array [object {2}]
required
Example
{
"response_code": 0,
"response_message": "string",
"payload": {
"b2bIds": {
"buyerB2BId": "string",
"supplierB2BId": "string"
},
"resp": {
"reqMsgId": "string",
"result": "string",
"errorCd": "string",
"errorDtl": "string",
"errorField": "string"
},
"poConfirmation": {
"objectId": "string",
"buyerPONumber": "string",
"supplierResponse": "string",
"supplierRemarks": "string",
"objectVersion": {
"currentVersion": 0,
"newVersion": 0
},
"poStatusTransition": {
"currentStatus": "string",
"newStatus": "string"
}
},
"additionalInfos": [
{
"name": "string",
"value": "string"
}
]
}
}
Modified at 2025-07-06 06:27:51