- APIs
- Business Onboarding
- Invoice
- Payment
- Purchase Order
- Credit Note
- Financing
- Business Onboarding
- Webhook
- Business Onboarding
- Invoice
- Payment
- Credit Note
- Purchase Order
- Send Purchase Order Request Webhook
- Send Purchase Order Response Webhook
- Confirm Purchase Order Request Webhook
- Confirm Purchase Order Response Webhook
- Edit Purchase Order Request Webhook
- Edit Purchase Order Response Webhook
- Status Change Purchase Order Request Webhook
- Status Change Purchase Order Response Webhook
- Financing
Confirm C/N Request
Developing
POST
/api/v0/cd-note/req-confirm
Confirming a Credit or Debit Note typically marks it as approved and ready for financial adjustments or settlement, ensuring that both your internal systems and your partners have an up-to-date record of the adjustment.
Request
Body Params application/json
device
objectÂ
required
tag
objectÂ
required
b2bIds
objectÂ
required
buyerB2BId
stringÂ
required
supplierB2BId
stringÂ
required
cdNoteConfirmation
objectÂ
required
objectId
stringÂ
required
noteType
stringÂ
required
supplierCDNoteNumber
stringÂ
required
objectVersion
objectÂ
required
buyerResponse
stringÂ
required
buyerRemarks
stringÂ
required
cdNoteStatusTransition
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"
},
"cdNoteConfirmation": {
"objectId": "string",
"noteType": "string",
"supplierCDNoteNumber": "string",
"objectVersion": {
"currentVersion": 0,
"newVersion": 0
},
"buyerResponse": "string",
"buyerRemarks": "string",
"cdNoteStatusTransition": {
"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/cd-note/req-confirm' \
--header 'Content-Type: application/json' \
--data-raw '{
"device": {
"tag": {
"name": "GEOCODE",
"value": "string"
}
},
"b2bIds": {
"buyerB2BId": "string",
"supplierB2BId": "string"
},
"cdNoteConfirmation": {
"objectId": "string",
"noteType": "string",
"supplierCDNoteNumber": "string",
"objectVersion": {
"currentVersion": 0,
"newVersion": 0
},
"buyerResponse": "string",
"buyerRemarks": "string",
"cdNoteStatusTransition": {
"currentStatus": "CREATED",
"newStatus": "CREATED"
}
},
"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-08 19:41:06