- Getting Started
- Extension
- Dashboard
- Module
- Report
- Total
- Integration
- Channel
- Extension
- Profile
- Inventory
- Addition
- Brand
- Category
- Deduction
- Flow
- Item
- Location
- Purchase Order
- Reservation
- Stock Take Job
- Supplier
- Transfer Job
- Transfer
- Sale
- Credit Note
- Customer Group
- Customer
- Order
- Setting
sale/credit_note/add
POST
/sale/credit_note/add
Request
Body Params application/json
domain
string
required
api_key
string
required
auth_timestamp
integer
required
auth_signature
string
required
channel_id
integer
required
imported_order_id
string
required
customer_id
integer
required
firstname
string
required
lastname
string
required
company
string
required
email
string
required
telephone
string
required
telephone_2
string
required
currency
string
required
currency_value
number
required
payment_method
string
required
total
number
required
comment
string
required
products
array [object {7}]
required
item_id
integer
required
name
string
required
model
string
required
sku
string
required
quantity
integer
required
price
number
required
cost
number
optional
credit_note_status_id
integer
required
Example
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"channel_id": 0,
"imported_order_id": "string",
"customer_id": 0,
"firstname": "string",
"lastname": "string",
"company": "string",
"email": "string",
"telephone": "string",
"telephone_2": "string",
"currency": "string",
"currency_value": 0,
"payment_method": "string",
"total": 0,
"comment": "string",
"products": [
{
"item_id": 0,
"name": "string",
"model": "string",
"sku": "string",
"quantity": 0,
"price": 0,
"cost": 0
}
],
"credit_note_status_id": 0
}
Responses
🟢200Success
application/json
Body
error
array[string]
optional
success
boolean
optional
credit_note
object
optional
credit_note_id
integer
required
order_id
integer
required
imported_order_id
string
required
location_id
integer
required
channel_id
integer
required
channel
string
required
payment_method
string
required
customer_id
integer
required
firstname
string
required
lastname
string
required
email
string
required
name
string
required
company
string
required
telephone
string
required
telephone_2
string
required
credit_note_status
string
required
credit_note_status_id
integer
required
currency
string
required
currency_value
number
required
total
number
required
cost
number
optional
date_added
string
required
date_modified
string
required
comment
string
required
locked
boolean
required
products
array [object {12}]
required
Example
{
"error": [
"string"
],
"success": true,
"credit_note": {
"credit_note_id": 0,
"order_id": 0,
"imported_order_id": "string",
"location_id": 0,
"channel_id": 0,
"channel": "string",
"payment_method": "string",
"customer_id": 0,
"firstname": "string",
"lastname": "string",
"email": "string",
"name": "string",
"company": "string",
"telephone": "string",
"telephone_2": "string",
"credit_note_status": "string",
"credit_note_status_id": 0,
"currency": "string",
"currency_value": 0,
"total": 0,
"cost": 0,
"date_added": "string",
"date_modified": "string",
"comment": "string",
"locked": true,
"products": [
{
"credit_note_product_id": 0,
"imported_order_product_id": "string",
"item_id": 0,
"thumb": "string",
"name": "string",
"model": "string",
"sku": "string",
"quantity": 0,
"price": 0,
"total": 0,
"cost": 0,
"restocked": true
}
]
}
}
Modified at 2024-10-20 14:33:19