- 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/get
POST
/sale/credit_note/get
Request
Body Params application/json
domain
string
required
api_key
string
required
auth_timestamp
integer
required
auth_signature
string
required
credit_note_id
integer
optional
filter_order_id
integer
optional
filter_customer_id
integer
optional
filter_channel_id
integer
optional
filter_name
string
optional
filter_email
string
optional
filter_telephone
string
optional
filter_credit_note_status
string
optional
filter_payment_method
string
optional
filter_date_start
string
optional
filter_date_end
string
optional
filter_date_type
string
optional
filter_deleted
integer
optional
page
integer
optional
sort
string
optional
order
string
optional
limit
integer
optional
Example
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"credit_note_id": 0,
"filter_order_id": 0,
"filter_customer_id": 0,
"filter_channel_id": 0,
"filter_name": "string",
"filter_email": "string",
"filter_telephone": "string",
"filter_credit_note_status": "string",
"filter_payment_method": "string",
"filter_date_start": "string",
"filter_date_end": "string",
"filter_date_type": "string",
"filter_deleted": 0,
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
🟢200Success
application/json
Body
error
array[string]
optional
total
boolean
optional
credit_notes
array [object {27}]
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
deleted
boolean
optional
Example
{
"error": [
"string"
],
"total": true,
"credit_notes": [
{
"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
}
],
"deleted": true
}
]
}
Modified at 2024-10-19 08:36:59