non-print
API Index
Introduction
Cafe24 API
Cafe24 Shopping Mall API is an API provided to app store join developers and third-party solution providers to provide services related to shopping malls.
Cafe24 API is a RESTful architecture that provides OAuth 2.0 based authentication system, a standard HTTP request method, a predictable endpoint URL, and an HTTP code based error message.
Request/Response Format
API request and response support JSON format.
For privacy protection purposes, Cafe 24 API only supports HTTPS protocol.
Dates properties are provided in the ISO_8601 format. : YYYY-MM-DDTHH:MM:SS + 09:00
Request Example (search)
Request Example (register/modify)
Right response example
{
"resource": {
"key": "value",
"key": "value"
}
}
Error response example
{
"error": {
"code": "error code",
"message": "error message",
"more_info": {
}
}
}
Method
Each resources support Create, Read, Update, and Delete and API can be used by using standard HTTP method.
POST : Create the resource.
GET: Read data the resource.
PUT : Modify(Update) the resource.
DELETE : Delete (delete) the resource.
Admin API Intro
Admin API
The Admin API is suitable for the shopping mall administrator to query, create, modify, and delete information in the shopping mall. The Admin API can get almost every information of resource and available only after pass Oauth 2.0 authentication.
example
https://{mallid}.cafe24api.com/api/v2/admin/sampleapi
API Status Code
Code | Case | Solutions |
---|---|---|
200 | When GET success, PUT success, DELETE success | |
201 | When POST success | |
207 | When status is vary as requested multiple objects. | Checks the error status of each object and deal with errors according to its status. |
400 | Server does not understand request 1) Wrong Content- 2) Application/ | Check for the "Content- |
400 | When not use URL Encoded character in API Request URL | Check whether API request URL has URL encoded character. |
401 | 1) When Access Token is missing 2) When Access Token is wrong 3) When Access Token is expired 4) Unrecognizable client | Check whether the Access Token is granted and used via valid process. |
401 | client_ | Check whether using valid client_ |
403 | 1) Access Token does not include Scope authority 2) Access forbidden for Front API | Check the Scope of API or setting of shopping mall whether you have the authority for request API. |
403 | Not a https protocol | Check whether request protocol is https. |
403 | Shopping mall has not been upgraded to a 'New product' mall | Shopping mall has to be upgraded to a 'New product' mall in order to use API. |
403 | (Admin API) App has been deleted from the shopping mall. | Install again after check whether the App is installed at the shopping mall. |
403 | (Front API) App has been deleted from the shopping mall. | Install again after check whether the App is installed at the shopping mall. |
404 | 1) When requested wrong API URL 2) When cannot found resource 3) When missing {#id} | Check the API reference for errors in URL. |
422 | When requested value is unprocessible with API reference 1) Missing necessary parameter 2) Not same with API reference | Check the API reference for whether omitted necessary parameter or put a wrong value. |
429 | When client requested over than Bucket volume | Request later in a while for not exceed maximum request. |
500 | Internal server error or unknown error | A temporary error has occurred. Please try again. |
503 | Server is unavailable | Please contact to developer center. |
503 | Server is unavailable. Cannot use API right now | Please contact to developer center. |
504 | Timeout | Response timeout due to a temporary error. Please try again later. |
How to use GET API
Cafe24 API provides several ways to get the data.
The following describes the different ways to recall data using various parameters when inquiring an API.
1.Add search criteria
When inquiring API, you can search search conditions by adding parameters to the endpoint.
If you are searching for multiple criteria together, you can add search criteria using the "&" separator.
You can also search using the "&" separator when searching for ranges such as start date, end date.
Add search criteria
Example: If you want to search for products with prices over \1,000 within a particular brand
GET https://{mallid}.cafe24api.com/api/v2/products?brand_code=B000000A&price_min=1000
GET https://{mallid}.cafe24api.com/api/v2/products?created_start_date=2018-01-03&created_end_date=2018-02-03
2. Search several conditions in parameter.
Multiple values can be retrieved simultaneously using commas(,) if supported by the API. (Only less than 100 items are allowed.)
Search criteria that are added as commas(,) are the OR condition, and all values that match that search condition are scanned.
To search multiple sections of a parameter
Example: When inquiring information of products 11, 12 or 13
GET https://{mallid}.cafe24api.com/api/v2/products?product_no=11,12,13
3. Multiple shopping mall information check
If you specify a particular shop_no during API lookup, you can inquire information in the corresponding multI-collar shopping mall.
If you don't specify a particular shop_no, check the information in shopping mall 1(default shopping mall).
Searching for Multi-shop information
Example: Check the products of shopping mall number 2
GET https://{mallid}.cafe24api.com/api/v2/products?shop_no=2
4. Check details and key
Most Resource can inquire in detail by specifying the ID of Resource in the URL.
You can query only one Resource, but more items are returned than if you are viewing the list.
Detailed inquiry and single item check
Example: How to check product number 128 in detail
GET https://{mallid}.cafe24api.com/api/v2/admin/products/128
Example: If you want to check the product number 128 using parameters
GET https://{mallid}.cafe24api.com/api/v2/admin/products?product_no=128
5. Pagination
If you have too many items to query when inquiring a list, all results may not be inquired at once.
If you want to inquire more results at once, use the 'limits' parameter to expand the number of queries.
If you do not use the 'limits' parameter, you can inquire only the default value of 'limits'.
The number of queries that can be extended with the limit parameter can be extended only to the maximum value defined for each API.
If the limit limit can not be used for all data, the 'offset' parameter can be used.
The 'offset' parameter can be used to determine the item to be inquired after starting with the previous product.
Pagination
Example: Check 100 products at a time
GET https://{mallid}.cafe24api.com/api/v2/admin/products?limit=100
Example: Check product 201 to product 300
GET https://{mallid}.cafe24api.com/api/v2/admin/products?limit=100&offset=200
6. Field Parameters
If you want to query only certain values in the API, you can inquire the values using the field parameters.
Field Parameters
Example: When inquiring a product, check only the product name and product number parameters.
GET https://{mallid}.cafe24api.com/api/v2/admin/products?fields=product_name,product_no
7. Embed Parameters
Embedded Resource belonging to the product when inquiring an item (e.g. variants,inventories) If you need to inquire the item and inventory together, you can inquire the data of the lower resource with using the ' embed ' parameter.
You can use the ' embed ' parameter only in the API that supports it.
Embed parameters
Example: When inquiring a product, check its option and item data together.
GET https://{mallid}.cafe24api.com/api/v2/admin/products/570?embed=variants,inventories
API Limit
Cafe 24 API works with the "Leaky Bucket" algorithm. The Leaky Bucket algorithm has the effect of limiting the number of API requests that are abnormally high for performance purposes, but also allowing the use of routine API requests without restriction.
Cafe 24 API stacks API requests in the dock. Bucket is limited to API calls when up to "Request Limit" per shopping mall are filled. The Bucket is decreased twice per second and can be recalled as a decrease.
If the app calls the API twice a second, you can continue to use the API calls without restriction.
If more than "Request Limit" calls are generated momentarily within a second, return the 429 error (too many requests).
If more than 10 requests per second are made from the same IP address of an online store, the requests may be considered abnormal or malicious.
You can avoid the 429 error by checking the X-Api-Call-Limit
with the header. You can see how many APIs have been ordered from the shopping mall, and how many Buckets are left.
X-Api-Call-Limit : 1/40
Versioning
Version 2021-03-01 (latest)
You can check the version release date for changes not compatible with the previous version.
You can specify a version of your choice in custom headers "X-Cafe24-Api-Version". If not specified, the latest version is used.
Example (request)
Authentication
Get Authentication Code
When requesting a token to be issued, the code used can not be reused and expires one minute after the code is issued.
{mallid} : Enter the appropriate shopping mall ID.
{client_id} : Enter the client_id of the app created in the developer center.
{state} : The value entered above is returned as a value to prevent modulation.
{redirect_anI} : Enter the Redirect URL for the app created by the developer center.
{script} : You can enter the privileges of the resource server to access the access token.
To receive an access token, you must request a cotton access code. The access code is used if the client is in the form of a Web application.
Example (request)
GET 'https://{mallid}.cafe24api.com/api/v2/oauth/authorize?response_type=code&client_id={client_id}&state={state}&redirect_uri={redirect_uri}&scope={scope}'
Example (response)
HTTP/1.1 302 Found
Location: {redirect_uri}?code={authorize_code}&state={state}
Get Access Token
You can get a user token to actually call up the API using the issued authentication code.
{mallid} : Enter the corresponding shopping mall ID.
{client_id} : Enter the client_id of the app created in the developer center.
{client_secret} : Enter the client_secret for the app created at the developer center.
{code} : Enter the issued code.
{redirect_anI} : Enter the Redirect URL for the app created by the developer center.
access_token : This is the approach token used by clients to access the resource server.
refresh_token : This token is used to reissue after the approach token expires.
Example (request)
Example (response)
HTTP/1.1 200 OK
{
"access_token": "0iqR5nM5EJIq.......",
"expires_at": "2017-10-19T19:17:57.902",
"refresh_token": "Cuq6H1WLKBxqqf.......",
"client_id": "BrIfqEKoP.......",
"mall_id": "yourmall",
"user_id": "test",
"scopes": [
"mall.read_order",
"mall.read_product",
"mall.read_store",
"...etc...",
],
"issued_at": "2017-10-19T17:17:57.911"
}
Get Access Token using refresh token
The approach token is unavilable after two hours after issued. After the approach token has expired, it must be reissued before the resource server can be accessed. If you have already received the approach token, you can re-issue it using refresh_token.
The refresh token is valid for two weeks. If you request it before refresh token is finished, it is returned with the updated access token. You can not use the old refresh token after it has expired.
You can get a user token to actually call up the API using the issued authentication code.
{mallid} : Enter the corresponding shopping mall ID.
{domain} : Enter the domain of the shopping mall.
{Client_id} : Enter the client_id of the app created by the developer center.
{client_secret} : Enter the client_secret of the app created by the developer center.
{refresh_token} : Enter the refresh_token received when the token was issued.
access_token : Used as access token when clients access resource servers.
refresh_token : This token is used to reissue after the approach token expires.
Example (request)
Example (response)
HTTP/1.1 200 OK
{
"access_token": "0iqR5nM5EJIq.......",
"expires_at": "2017-10-19T19:17:57.902",
"refresh_token": "Cuq6H1WLKBxqqf.......",
"client_id": "BrIfqEKoP.......",
"mall_id": "yourmall",
"user_id": "test",
"scopes": [
"mall.read_order",
"mall.read_product",
"mall.read_store",
"...etc...",
],
"issued_at": "2017-10-19T17:17:57.911"
}
Category
Autodisplay
Autodisplay properties
Attribute | Description |
---|---|
shop_ | Shop Number |
display_ | auto layout number |
use_ | Displayed on home page T: yes |
category_ | Category number |
display_ | detailed product category |
display_ Min : [1]~Max : [200] | maximum quantity per auto layout |
use_ | schedule layout T: yes |
start_ timezone | start date |
use_ | use hashtag T: yes |
hash_ | hashtag |
display_ | sorting order AOD: no. orders (high-low) |
timetable Array Max : [24] | update frequency |
period | date range for data collection 1: 1 day |
except_ | Exceptions category |
List all autodisplay
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_category |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
display_ | auto layout number |
Create an autodisplay
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_category |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
use_ Required | Displayed on home page T: yes |
category_ Required | Category number |
display_ Required | detailed product category |
display_ Required Min : [1]~Max : [200] | maximum quantity per auto layout |
use_ Required | schedule layout T: yes |
start_ timezone | start date |
use_ Required | use hashtag T: yes |
hash_ | hashtag |
display_ | sorting order AOD: no. orders (high-low) |
timetable Array Max : [24] | update frequency |
period | date range for data collection 1: 1 day |
except_ | Exceptions category |
Update an autodisplay
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_category |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
display_ Required | auto layout number |
display_ Min : [1]~Max : [200] | maximum quantity per auto layout |
use_ | schedule layout T: yes |
start_ timezone | start date |
use_ | use hashtag T: yes |
hash_ | hashtag |
display_ | sorting order AOD: no. orders (high-low) |
timetable Array Max : [24] | update frequency |
period | date range for data collection 1: 1 day |
except_ | Exceptions category |
Delete an autodisplay
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_category |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
display_ Required | auto layout number |
Categories
Categories allow the admin to display or categorize products in a way that customers can easily find them. You must display products in at least one category to sell them. One product can be displayed in multiple categories.
Categories properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
category_ | Category number A unique identifier assigned to a product category. It cannot be used for more than one product category. |
category_ Min : [1]~Max : [4] | Category depth Depth of the product category. There are four product category depths. |
parent_ | Parent Category Number The category number of the parent category when the category is either 2 depth (subcategory 1), 3 depth (subcategory 2), or 4 depth (subcategory 3) category. |
category_ Max Length : [50] | Category name Name of the product category |
display_ | Display setting Whether the product category is displayed either on the PC store, mobile store, or on both stores. A: PC + Mobile |
full_ | Full Category Name The names of all parent categories to which the product category belongs. |
full_ | Full Category Number This shows the category numbers of all parent categories that the current category belongs to. |
root_ | Top category number The category number of the main category to which the category belongs |
use_ | Main classification display status Whether or not the product category is displayed on the main page. If it is, [True], the product category is displayed as a home category even if it is subcategory 1, 2, or 3. T: Displayed |
use_ | Display status Whether or not the product category is displayed. If it is “FALSE,” customers cannot access the product category. All multi-language stores must have the same settings. T: Displayed |
display_ | Display order The order in which the admin has placed product categories |
soldout_ | Sold-out product display status It shows whether out-of-stock products are displayed at the top or at the bottom. You can check whether a product is sold-out via “sold-out” parameter in “List all products.” B: Arranged out-of-stock items to the back |
sub_ | Sub-category Product display status Whether to display products in both the current category and its sub-categories. T: Display |
hashtag_ | Hashtag based product display Whether or not to use “Hashtag-based product display”. T: Display |
hash_ | Hashtag The list of hashtags in the current category. |
product_ | Category display scope This determines whether the common product layout settings are applied to all product categories or different settings by section. If it is set as [Apply common settings to all products], you can change the sort settings with the following parameters: A: All |
product_ | Category display method The sorting method for the current category when [Product layout settings] is set as “Apply common settings to all categories.” A: Automatic arrangement |
product_ | Category display key The sorting criteria for the current category when [Product layout settings] is set as “Apply common settings to all categories” and the sorting method as “Automatic sorting” or “Automatic + Custom.” A: Recently added product |
product_ | Category display order Settings for sorting products in ascending or descending order D: Descending order |
product_ | Category display period The period during which sales or views are counted when sorting products by “Sales(S)” or “Views(C)” in descending order W: Total period |
normal_ | Category display method The sorting method for [Products] when [Product layout settings] is set as “Apply different settings by section.” A: Automatic arrangement |
normal_ | Category display key The sorting criteria for [Products] when [Product layout settings] is set as “Apply different settings by section” A: Recently added product |
normal_ | Category display order Settings for sorting products in [Products] in ascending or descending order D: Descending order |
normal_ | Category display period The period during which sales or views are counted when sorting products in [Products] by “Sales(S)” or “Views(C)” in descending order W: Total period |
recommend_ | Category display method The sorting method for [Recommended products] when [Product layout settings] is set as “Apply different settings by section.” A: Automatic arrangement |
recommend_ | Category display key The sorting criteria for [Recommended products] when [Product layout settings] is set as “Apply different settings by section” A: Recently added product |
recommend_ | Category display order Settings for sorting products in [Recommended products] in ascending or descending order D: Descending order |
recommend_ | Category display period The period during which sales or views are counted when sorting products in [Recommended roducts] by “Sales(S)” or “Views(C)” in descending order W: Total period |
new_ | Category display method The sorting method for [New products] when [Product layout settings] is set as “Apply different settings by section.” A: Automatic arrangement |
new_ | Category display key The sorting criteria for [New products] when [Product layout settings] is set as “Apply different settings by section” A: Recently added product |
new_ | Category display order Settings for sorting products in [New products] in ascending or descending order D: Descending order |
new_ | Category display period The period during which sales or views are counted when sorting products in [New roducts] by “Sales(S)” or “Views(C)” in descending order W: Total period |
access_ | permission to access F : for everyone |
List all categories
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_category |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
category_ Min : [1]~Max : [4] | Category depth Search for the depth of the category you want to retrieve |
category_ | Category number Category number of the category you want to read |
parent_ | Parent Category Number Search for the number of parent category which targeting product category belongs. |
category_ | Category name Search for product categories of which names include the search query that you enter. The search query is case-insensitive. |
limit Min : [1]~Max : [100] | Limit Set the maximum number of search result. DEFAULT 10 |
offset Max : [8000] | Start location of list Set the start location of search result. |
Count all categories
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_category |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
category_ Min : [1]~Max : [4] | Category depth Search for the category that you want to retrieve with its category depth. |
category_ | Category number Category number of the category you want to read |
parent_ | Parent Category Number You can search for the category with its parent category number. |
category_ | Category name Search for product categories of which names include the search query that you enter. The search query is case-insensitive. |
Get a category
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_category |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
category_ Required | Category number Category number of the category you want to read |
Create a category
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_category |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
parent_ | Parent Category Number If you want to register a category in a specific category, you can register it by entering the parent category number. |
category_ Required Max Length : [50] | Category name The name of the category |
display_ | Display setting Whether the product category is displayed on either the PC store, mobile store, or on both stores. A: PC + Mobile |
use_ | Main classification display status Whether or not the product category is displayed on the main page. If it is, [True], the product category is displayed as a home category even if it is subcategory 1, 2, or 3. T: Displayed |
use_ | Display status Whether the product category is displayed or not. The product category will not accessible when 'FALSE'. T: Displayed |
soldout_ | Sold-out product display status Whether to display out-of-stock products at the top or bottom of the category. B: Arranged out-of-stock items to the back |
sub_ | Sub-category Product display status Whether to display products that are displayed in the sub-category T: Display |
hashtag_ | Hashtag based product display Whether use or not use hashtag based product display. T: Display |
hash_ | Hashtag Hashtags of the category. |
product_ | Category display scope Whether to sort products by category or sort by area A: All |
product_ | Category display method If category display scope is "all", category display method. A: Automatic arrangement |
product_ | Category display key If category display scope is "all" and category display method is "auto align" or "auto align + manual align", the sort key of category display. A: Recently added product |
product_ | Category display order Whether category display is ascending or descending. D: Descending order |
product_ | Category display period If category display key is "By sales (S)" or "By hits count(C)", the period for category display. W: Total period |
normal_ | Category display method If category display scope is "By area", category display method in normal product area. A: Automatic arrangement |
normal_ | Category display key If category display scope is "By area" and category display method is "auto align" or "auto align + manual align", the sort key of category display in normal product area. A: Recently added product |
normal_ | Category display order Whether category display in normal product area is ascending or descending. D: Descending order |
normal_ | Category display period If category display key is "By sales (S)" or "By hits count(C)", the period for category display. W: Total period |
recommend_ | Category display method If category display scope is "By area", category display method by recommend product area. A: Automatic arrangement |
recommend_ | Category display key If category display scope is "all" and category display method is "auto align" or "auto align + manual align", the sort key of category display. A: Recently added product |
recommend_ | Category display order Whether category display is ascending or descending. D: Descending order |
recommend_ | Category display period If category display key is "By sales (S)" or "By hits count(C)", the period for category display. W: Total period |
new_ | Category display method If category display scope is "all", category display method. A: Automatic arrangement |
new_ | Category display key If category display scope is "all" and category display method is "auto align" or "auto align + manual align", the sort key of category display. A: Recently added product |
new_ | Category display order Whether category display is ascending or descending. D: Descending order |
new_ | Category display period If category display key is "By sales (S)" or "By hits count(C)", the period for category display. W: Total period |
Update a category
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_category |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
category_ Required | Category number |
category_ Max Length : [50] | Category name The name of the category |
display_ | Display setting Whether the product category is displayed either on the PC store, mobile store, or on both stores. A: PC + Mobile |
use_ | Main classification display status Whether or not the product category is displayed on the main page. If it is, [True], the product category is displayed as a home category even if it is subcategory 1, 2, or 3. T: Displayed |
use_ | Display status Whether the product category is displayed or not. The product category will not accessible when 'FALSE'. T: Displayed |
soldout_ | Sold-out product display status Whether to display out-of-stock products at the top or bottom of the category. B: Arranged out-of-stock items to the back |
sub_ | Sub-category Product display status Whether to display products that are displayed in the sub-category T: Display |
hashtag_ | Hashtag based product display Whether use or not use hashtag based product display. T: Display |
hash_ | Hashtag Hashtags of the category. |
product_ | Category display scope Whether to sort products by category or sort by area A: All |
product_ | Category display method If category display scope is "all", category display method. A: Automatic arrangement |
product_ | Category display key If category display scope is "all" and category display method is "auto align" or "auto align + manual align", the sort key of category display. A: Recently added product |
product_ | Category display order Whether category display is ascending or descending. D: Descending order |
product_ | Category display period If category display key is "By sales (S)" or "By hits count(C)", the period for category display. W: Total period |
normal_ | Category display method If category display scope is "By area", category display method in normal product area. A: Automatic arrangement |
normal_ | Category display key If category display scope is "By area" and category display method is "auto align" or "auto align + manual align", the sort key of category display in normal product area. A: Recently added product |
normal_ | Category display order Whether category display in normal product area is ascending or descending. D: Descending order |
normal_ | Category display period If category display key is "By sales (S)" or "By hits count(C)", the period for category display. W: Total period |
recommend_ | Category display method If category display scope is "By area", category display method by recommend product area. A: Automatic arrangement |
recommend_ | Category display key If category display scope is "all" and category display method is "auto align" or "auto align + manual align", the sort key of category display. A: Recently added product |
recommend_ | Category display order Whether category display is ascending or descending. D: Descending order |
recommend_ | Category display period If category display key is "By sales (S)" or "By hits count(C)", the period for category display. W: Total period |
new_ | Category display method If category display scope is "all", category display method. A: Automatic arrangement |
new_ | Category display key If category display scope is "all" and category display method is "auto align" or "auto align + manual align", the sort key of category display. A: Recently added product |
new_ | Category display order Whether category display is ascending or descending. D: Descending order |
new_ | Category display period If category display key is "By sales (S)" or "By hits count(C)", the period for category display. W: Total period |
Delete a category
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_category |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
category_ Required | Category number |
Categories decorationimages
Categories decorationimages properties
Attribute | Description |
---|---|
shop_ | Shop Number |
category_ | Category number |
use_ | menu image settings for PC store T: Used |
menu_ | default menu image for PC store |
menu_ | overlay menu image for PC store |
use_ | header image settings for PC store T: Used |
top_ | header image for PC store |
use_ | headline image settings for PC store T: Used |
title_ | headline image for PC store |
use_ | menu image settings for mobile store T: Used |
menu_ | default menu image for mobile store |
use_ | header image settings for mobile store T: Used |
top_ Array Max : [3] | header image for mobile store |
use_ | headline image settings for mobile store T: Used |
title_ | headline image for mobile store |
List all categories decoration images
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_category |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
category_ Required | Category number |
Update a categories decorationimage
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_category |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
category_ Required | Category number |
use_ | menu image settings for PC store T: Used |
menu_ | default menu image for PC store |
menu_ | overlay menu image for PC store |
use_ | header image settings for PC store T: Used |
top_ Array Max : [3] | header image for PC store |
use_ | headline image settings for PC store T: Used |
title_ | headline image for PC store |
use_ | menu image settings for mobile store T: Used |
menu_ | default menu image for mobile store |
use_ | header image settings for mobile store T: Used |
top_ Array Max : [3] | header image for mobile store |
use_ | headline image settings for mobile store T: Used |
title_ | headline image for mobile store |
Categories seo
Categories seo properties
Attribute | Description |
---|---|
shop_ | Shop Number |
category_ | Category number |
search_ | exposure setting for search engine T: Use |
meta_ | Browser title |
meta_ | Meta tag 1: Author |
meta_ | Meta tag 2: Description |
meta_ | Meta tag 3: Keywords |
List all categories seo
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_category |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
category_ Required | Category number |
Update a categories seo
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_category |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
category_ Required | Category number |
search_ | exposure setting for search engine T: Use |
meta_ | Browser title |
meta_ | Meta tag 1: Author |
meta_ | Meta tag 2: Description |
meta_ | Meta tag 3: Keywords |
Mains
The main category (Mains) is a product category that can display products of the shopping mall on the main screen.
Endpoints
Mains properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
module_ | Module code The module code assigned main display group |
display_ | main category number |
group_ | Group Name Category name defined when main categories were created |
soldout_ | Sold-out product display status The display location of sold out products. B: Arranged out-of-stock items to the back |
List all mains
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_category |
Request Limit | 40 |
Product
Bundleproducts
Bundleproducts properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
product_ | Product number A unique serial number assigned to a product. This number cannot be duplicated. |
product_ Type : [A-Z0-9] | Product code A code assigned to a product by the system. This code cannot be duplicated. |
bundle_ | composite product information |
custom_ Max Length : [40] | Custom product code A code assigned to a product by the store admin. The code can be used by store admins who need their own separate code to manage products for inventory management or other reasons. |
product_ Max Length : [250] | Product name Name of the product. This is the basic information to identify products and can be a query for searching for products. It can be entered in the HTML form. |
eng_ Max Length : [250] | English name of product Product name in English. It can be used for international shipping. |
supply_ Max Length : [250] | Supplier product name Product name entered by a supplier. The supplier can enter any name it needs to identify products. This name does not affect Product name. |
internal_ Max Length : [50] | internal product name |
model_ Max Length : [100] | Model name Model of the product |
display | Whether display Whether the product is displayed on the store. T: Display |
selling | whether selling Whether the product is for sale. T: Sell |
product_ | Product condition Condition of the product N: New |
product_ Max : [2147483647] | Months of using the used product |
summary_ Max Length : [255] | Product Summary Description Summary description of the product. It is displayed on the product layout page. Can be entered in HTML format. You can choose to show or hide the product summary in [Products>Product data display>Settings]. |
product_ Max Length : [200] | Product tag Search terms for searching or categorizing products (hashtags) |
price_ Max Length : [20] | Alternative phrase of the selling price Text that replaces price. Can be used when a product is temporarily out-of-stock or unavailable. |
buy_ | whether purchase restriction individual setting T: use |
buy_ | Purchase limitation Whether or not to restrict purchase from guest accounts N: Members only and hide purchase button. |
buy_ | customer levels allowed to purchase the relevant product |
repurchase_ | repurchase restriction T : restrict repurchase |
single_ | single purchase restriction T : restrict single purchase |
points_ | whether use mileage individual setting F : use default setting |
points_ | mileage individual setting - lower level item > basic setting mileage or mileage setting according to payment method B : Use the default reserve setting |
points_ | Mileage setting |
except_ | Mileage exception T : exclude setting an additional mileage accumulation for member group |
adult_ | Adult certification Whether the product requires adult certification. Customer needs to be authenticated to purchase products that require adult certification. T: Used |
detail_ | Detail image Detail image' showing on the product detail page. |
list_ | List image List image' showing on the product category page, main page, product search result page. |
tiny_ | Tiny image Small list image' showing on the recently viewed page. |
small_ | Reduced image Reduced image' showing on the bottom side of the product detail page. |
use_ | whether use Naver Pay T: Used |
naverpay_ | Naver Pay sales type C : Naver Pay + Shopping Mall Products at the same time |
icon_ | Period for showing icon Period for showing icon. |
icon Array Max : [5] | List of icon Icon displays at the product. This icon can use a purpose of emphsize selling. |
hscode | HS code HS code used for customs duties when shipped overseas. Must enter the correct number for international shipment clearance. |
product_ | Weight of product Weight of whole product. Total weight including product, box, and packing weight is necessary for shipping. |
product_ | Material of product The material of the item. You should enter each material and percentage of composing material if the product is has a multiple material. |
created_ timezone | Created date Date when product registered. |
updated_ timezone | Updated date Date when product modified. |
english_ | English product material English version of a material of product. When you using an overseas delivery company, you may be required information of a material of the clothes. |
cloth_ | Fabric of product In case cloth products using a Japanese courier service, material information may required for some shipping companies. woven: Woven |
list_ | Recommend / sold out / new icon expose flag Either showing recommend / sold out / new icon will be exposed or not. |
sold_ | Whether sold out or stock is available T: Out-of-stock |
discountprice | Product discount sale price Resource
|
decorationimages | Decoration Image Resource
|
benefits | Benefits Resource
|
additionalimages Array Max : [20] | additional image resource
|
exposure_ | types of customers allowed to view the relevant product A: display to all |
exposure_ | customer levels allowed to view the relevant product |
bundle_ | bundle discount information |
category | Category number Category of the product. Product is marked with this category. |
project_ | planned exhibition number |
description | Detail description of product Detail description of product. You may input description with HTML. |
mobile_ | Mobile version of product description Mobile version of product description. Replace product description to the mobile version when customer access a mobile shopping mall. |
separated_ | add mobile version T: add mobile version product details |
additional_ Array Max : [20] | Additional image 'Additional image' showing on the bottom side of the product detail page. Displayed at similar location with 'Reduced image' and can see 'Additional image' when mouse over at PC version or swipe at mobile version. |
payment_ | Payment info Guidance for payment method. You may input this with HTML. |
shipping_ | Shipping info Guidance for shipping method. You may input this with HTML. |
exchange_ | Exchange info Guidance for exchange and return method. You may input this with HTML. |
service_ | Service info Guidance for service warranty information. You may input this with HTML. |
country_ | HS code by country HS code used for customs duties when shipped overseas. You must enter the correct number for international shipment clearance. |
simple_ | Simple Product Description Simple description of product. Can Exposed at product display screen. You may input description with HTML. |
shipping_ | Shipping fee by product Set whether shipping fee will be charged separately or commonly. T: Used |
shipping_ | Shipping method Following is the method when 'individual_delivery' is TRUE 01: regular delivery |
prepaid_ | Whether prepaid shipping fee C: Pay after delivery |
shipping_ | Shipping period (When using 'Shipping charge individually') Average transit time for make a delivery. |
shipping_ | Shipping information Shows whether can only deliver domestically or can deliver to overseas too. A: Domestic only |
shipping_ Max Length : [255] | Shipping area (When using 'Shipping charge individually') Available shipping region. |
shipping_ | Shipping charge (When using 'Shipping charge individually') Type of shipping charge. T: Free shipping R: Fixed rate M: Charge according to purchase amount D: Use different shipping charges per different purchase amount W: Use different shipping charges by product weight C: Use different shipping charges by quantity N: Use different shipping charges per different quantity |
shipping_ | Charge shipping by section If shipping_fee_type is R or N, you can set the shipping cost by defining shipping_fee in the array. |
clearance_ | English name of product Product classification information to use for the purpose of overseas customs clearance. |
clearance_ | Korean product category for overseas customs clearance Product name as Korean |
clearance_ Type : [A-Z0-9] | Clearance category code |
additional_ | Additional information list You may add additional information other than basic information. |
image_ | Image type Image type when uploading image. A: Register a representative image. |
main | whether display at main Displays main display number when display products at main page such as "recommend product" or "new". |
relational_ Array Max : [200] | Related product Related or similar product of selected product. Registered related product display the bottom of the product detail page. |
memos | Memos Resource
It can be displayed only in detail inquiry. |
hits | Product hits Resource
It can be displayed only in detail inquiry. |
seo | Product Seo Resource
It can be displayed only in detail inquiry. |
tags | Product Tag Resource
It can be displayed only in detail inquiry. |
List all bundleproducts
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
discountprice embed | Product discount sale price Resource |
decorationimages embed | Decoration Image Resource |
benefits embed | Benefits Resource |
additionalimages embed | additional image resource |
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ | Product number Number of a product. You can search multiple item with ,(comma) |
display | Whether display T: Display |
selling | whether selling T: Sell |
product_ | Product code You can search multiple item with ,(comma) |
product_ | Product tag You can search multiple item with ,(comma) |
custom_ | Custom product code You can search multiple item with ,(comma) |
product_ | Product name You can search multiple item with ,(comma) |
eng_ | English name of product You can search multiple item with ,(comma) |
supply_ | Supplier product name You can search multiple item with ,(comma) |
internal_ | internal product name You can search multiple item with ,(comma) |
model_ | Model name You can search multiple item with ,(comma) |
price_ | Minimum price |
price_ | Maximum price |
created_ timezone | Registered date start |
created_ timezone | Registered date end |
updated_ timezone | Updated date start |
updated_ timezone | Updated date end |
category | Category number |
category_ | Unapplied Category T : Search for products that category unapplied |
include_ | include sub category T: Included |
product_ | Weight of product |
additional_ | additional information key |
additional_ | additional information value |
sort | Sort order created_date: Created Date |
order | Order by asc: Ascending |
limit Min : [1]~Max : [100] | Limit Set the maximum number of search result. DEFAULT 10 |
offset Max : [8000] | Start location of list Set the start location of search result. |
Get a bundleproduct
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number Number of a product. |
discountprice embed | Product discount sale price Resource |
decorationimages embed | Decoration Image Resource |
benefits embed | Benefits Resource |
memos embed | Memos Resource |
hits embed | Product hits Resource |
seo embed | Product Seo Resource |
tags embed | Product Tag Resource |
additionalimages embed | additional image resource |
Create a bundleproduct
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required Max Length : [250] | Product name Name of product. |
bundle_ Required | composite product information |
product_no purchase_quantity | |
bundle_ Required | bundle discount information |
discount_value discount_type discount_round_unit discount_round_type | |
display | Whether display Whether display or not. T: Display DEFAULT F |
selling | whether selling Whether selling or not. T: Sell DEFAULT F |
add_ | Category no Register your product in the category you want to display using the category number |
category_no recommend new | |
custom_ Max Length : [40] | Custom product code You may assign this code manually in case of stock management or other reasons. |
eng_ Max Length : [250] | English name of product Name of product in english. |
supply_ Max Length : [250] | Supplier product name |
internal_ Max Length : [50] | internal product name |
model_ Max Length : [100] | Model name Model name of product. |
use_ | whether use Naver Pay This cannot be used on Cafe24 Vietnam, Philippines. T: Used |
naverpay_ | Naver Pay sales type This cannot be used on Cafe24 Vietnam, Philippines. C : Naver Pay + Shopping Mall Products at the same time |
product_ Min : [0]~Max : [999999.99] | Weight of product |
description | Detail description of product Detailed description of product. |
mobile_ | Mobile version of product description Mobile version of product description. Replace product description to the mobile version when customer access a mobile shopping mall. |
summary_ Max Length : [255] | Product Summary Description |
simple_ | Simple Product Description |
product_ Max Length : [200] | Product tag Tag for search product. |
payment_ | Payment info Payment method guidance. |
shipping_ | Shipping info Shipping method guidance. |
exchange_ | Exchange info Exchange/return method guidance. |
service_ | Service info Service query / information guidance. |
icon Array Max : [5] | List of icon Register icon. |
hscode Max Length : [20] | HS code Required if shipping information (shipping_scope) is B (domestic / overseas shipping) or C (overseas shipping) |
shipping_ | Shipping information Shows whether can only deliver domestically or can deliver to overseas too. This cannot be used on Cafe24 Vietnam, Philippines. A: Domestic only DEFAULT A |
shipping_ | Shipping method Shipping method(when shipping individually). 01: regular delivery DEFAULT 01 |
shipping_ | Shipping fee by product Shipping charge individually. T: Individual delivery DEFAULT F |
shipping_ Max Length : [255] | Shipping area Shipping area. |
shipping_ Array Max : [2] | Shipping period Transit time. |
minimum maximum | |
shipping_ | Shipping charge Shipping charge. Type of shipping charge when using 'Shipping charge individually'. T: Free shipping R: Fixed rate M: Charge according to purchase amount D: Use different shipping charges per different purchase amount W: Use different shipping charges by product weight C: Use different shipping charges by quantity N: Use different shipping charges per different quantity DEFAULT T |
shipping_ | Shipping rates If shipping_fee_type is R or N, you can set the shipping cost by defining shipping_fee in the array. |
prepaid_ | Whether prepaid shipping fee This cannot be used on Cafe24 Vietnam, Philippines. C: Pay after delivery DEFAULT B |
clearance_ Type : [A-Z0-9] | Clearance category code Required if shipping information (shipping_scope) is B (domestic / overseas shipping) or C (overseas shipping) |
detail_ | Detail image Detail image. |
list_ | List image List image. |
tiny_ | Tiny image |
small_ | Reduced image |
image_ | Image type Image type. A: Register a representative image. DEFAULT A |
additional_ | Additional information list Additional item. |
key value | |
price_ Max Length : [20] | Alternative phrase of the selling price |
buy_ | whether purchase restriction individual setting T: use DEFAULT F |
buy_ | Purchase limitation N: Members only and hide purchase button. DEFAULT F |
buy_ | customer levels allowed to purchase the relevant product |
repurchase_ | repurchase restriction T : restrict repurchase DEFAULT F |
single_ | single purchase restriction T : restrict single purchase DEFAULT F |
points_ | whether use mileage individual setting F : use default setting DEFAULT F |
points_ | mileage individual setting - lower level item > basic setting mileage or mileage setting according to payment method B : Use the default reserve setting |
points_ | Mileage setting |
except_ | Mileage exception T : exclude setting an additional mileage accumulation for member group DEFAULT F |
main | whether display at main Displays main display number when display products at main page such as "recommend product" or "new". |
relational_ Array Max : [200] | Related product Related or similar product of selected product. Registered related product display the bottom of the product detail page. |
product_no interrelated | |
product_ | Material of product The material of the item. You should enter each material and percentage of composing material if the product is has a multiple material. |
english_ | English product material English version of a material of product. When you using an overseas delivery company, you may be required information of a material of the clothes. |
cloth_ | Fabric of product In case cloth products using a Japanese courier service, material information may required for some shipping companies. woven: Woven |
additional_ | Additional image Additional image' showing on the bottom side of the product detail page. Displayed at similar location with 'Reduced image' and can see 'Additional image' when mouse over at PC version or swipe at mobile version. |
adult_ | Adult certification This attribute tell you whether the product is age-restricted or not. Customers need to authenticate themselves to purchase age-restricted products. This cannot be used on Cafe24 Vietnam, Philippines. T: Used DEFAULT F |
exposure_ | types of customers allowed to view the relevant product A: display to all DEFAULT A |
exposure_ | customer levels allowed to view the relevant product |
Update a bundleproduct
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
product_ Max Length : [250] | Product name Name of product. |
bundle_ | composite product information |
product_no purchase_quantity | |
bundle_ | bundle discount information |
discount_value discount_type discount_round_unit discount_round_type | |
display | Whether display You can choose product should be displayed or not. T: Display |
selling | whether selling Whether selling or not. T: Sell |
product_ | Product condition N: New |
product_ Max : [2147483647] | Months of using the used product Used month for the product when product_condition is used product. |
add_ | Category no Enter a category number to add a specific product category to the product |
category_no recommend new | |
delete_ | Deleted classification number Enter a category number to delete a specific product category to the product |
custom_ Max Length : [40] | Custom product code You may assign this code manually in case of stock management or other reasons. |
eng_ Max Length : [250] | English name of product Name of product in english. |
supply_ Max Length : [250] | Supplier product name |
internal_ Max Length : [50] | internal product name |
model_ Max Length : [100] | Model name Model name of product. |
use_ | whether use Naver Pay This cannot be used on Cafe24 Vietnam, Philippines. T: Used |
naverpay_ | Naver Pay sales type This cannot be used on Cafe24 Vietnam, Philippines. C : Naver Pay + Shopping Mall Products at the same time |
product_ Min : [0]~Max : [999999.99] | Weight of product |
description | Detail description of product Detailed description of product. |
mobile_ | Mobile version of product description Mobile version of product description. Replace product description to the mobile version when customer access a mobile shopping mall. |
summary_ Max Length : [255] | Product Summary Description Summary description of product. |
simple_ | Simple Product Description Simple description of product. |
product_ Max Length : [200] | Product tag Tag for search product. |
payment_ | Payment info Payment method guidance. |
shipping_ | Shipping info Shipping method guidance. |
exchange_ | Exchange info Exchange/return method guidance. |
service_ | Service info Service query / information guidance. |
icon Array Max : [5] | List of icon Register icon. |
use_ | whether use show date T: Used |
icon_ | start date of show_date |
icon_ | end date of show_date |
hscode Max Length : [20] | HS code Required if shipping information (shipping_scope) is B (domestic / overseas shipping) or C (overseas shipping) |
shipping_ | Shipping information Shows whether can only deliver domestically or can deliver to overseas too. This cannot be used on Cafe24 Vietnam, Philippines. A: Domestic only |
prepaid_ | Whether prepaid shipping fee This cannot be used on Cafe24 Vietnam, Philippines. C: Pay after delivery |
shipping_ | Shipping method Shipping method(when shipping individually). 01: regular delivery |
shipping_ | Shipping fee by product Shipping charge individually. T: Individual delivery |
shipping_ Max Length : [255] | Shipping area Shipping area. |
shipping_ Array Max : [2] | Shipping period Transit time. |
minimum maximum | |
shipping_ | Shipping charge Shipping charge. Type of shipping charge when using 'Shipping charge individually'. T: Free shipping R: Fixed rate M: Charge according to purchase amount D: Use different shipping charges per different purchase amount W: Use different shipping charges by product weight C: Use different shipping charges by quantity N: Use different shipping charges per different quantity |
shipping_ | Shipping rates If shipping_fee_type is R or N, you can set the shipping cost by defining shipping_fee in the array. |
clearance_ Type : [A-Z0-9] | Clearance category code Required if shipping information (shipping_scope) is B (domestic / overseas shipping) or C (overseas shipping) |
detail_ | Detail image Detail image. |
list_ | List image List image. |
tiny_ | Tiny image Reduced image. |
small_ | Reduced image Small list image. |
image_ | Image type Image type. A: Register a representative image. |
additional_ | Additional information list Additional item. |
key value | |
price_ Max Length : [20] | Alternative phrase of the selling price |
buy_ | whether purchase restriction individual setting T: use |
buy_ | Purchase limitation N: Members only and hide purchase button. |
buy_ | customer levels allowed to purchase the relevant product |
repurchase_ | repurchase restriction T : restrict repurchase |
single_ | single purchase restriction T : restrict single purchase |
points_ | whether use mileage individual setting F : use default setting |
points_ | mileage individual setting - lower level item > basic setting mileage or mileage setting according to payment method B : Use the default reserve setting |
points_ | Mileage setting |
except_ | Mileage exception T : exclude setting an additional mileage accumulation for member group |
main | whether display at main Displays main display number when display products at main page such as "recommend product" or "new". |
relational_ Array Max : [200] | Related product Related or similar product of selected product. Registered related product display the bottom of the product detail page. |
product_no interrelated | |
product_ | Material of product The material of the item. You should enter each material and percentage of composing material if the product is has a multiple material. |
english_ | English product material English version of a material of product. When you using an overseas delivery company, you may be required information of a material of the clothes. |
cloth_ | Fabric of product In case cloth products using a Japanese courier service, material information may required for some shipping companies. woven: Woven |
additional_ | Additional image Additional image' showing on the bottom side of the product detail page. Displayed at similar location with 'Reduced image' and can see 'Additional image' when mouse over at PC version or swipe at mobile version. |
adult_ | Adult certification This attribute tell you whether the product is age-restricted or not. Customers need to authenticate themselves to purchase age-restricted products. This cannot be used on Cafe24 Vietnam, Philippines. T: Used |
exposure_ | types of customers allowed to view the relevant product A: display to all |
exposure_ | customer levels allowed to view the relevant product |
Delete a bundleproduct
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Categories products
A relational resource that lets you retrieve or update product display order or general display settings.
Categories products properties
Attribute | Description |
---|---|
shop_ | Shop Number |
product_ | Product number System assigned code. This code cannot be duplicated. |
sequence_ | display order |
auto_ | whether to use automatic sorting |
sold_ | Whether sold out or stock is available |
fixed_ | whether fixed |
not_ | whether not for sale |
display_ Min : [1]~Max : [3] | detailed product category 1 : Regular product DEFAULT 1 |
sequence Min : [1]~Max : [999998] | Display order |
List all categories products
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
category_ Required | Category number |
display_ Required Min : [1]~Max : [3] | detailed product category 1 : Regular product |
limit Min : [1]~Max : [50000] | Limit DEFAULT 50000 |
Count all categories products
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
category_ Required | Category number |
display_ Required Min : [1]~Max : [3] | detailed product category 1 : Regular product |
Create a categories product
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
category_ Required | Category number |
display_ Min : [1]~Max : [3] | detailed product category 1 : Regular product DEFAULT 1 |
product_ Required | Product number |
Update a categories product
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
category_ Required | Category number |
display_ Required Min : [1]~Max : [3] | detailed product category 1 : Regular product |
product_ Required | Product number |
sequence Min : [1]~Max : [999999] | Display order |
auto_ | whether to use automatic sorting T : Use automatic arrangement |
fixed_ | whether fixed T : Use designated display order |
Delete a categories product
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
category_ Required | Category number |
product_ Required | Product number |
display_ Min : [1]~Max : [3] | detailed product category If a product is marked as [Not on display], it will not be displayed in new products or recommeded products section as well. 1 : Regular product DEFAULT 1 |
Mains products
A relational resource to the Mains resource about main category products’ display order.
Mains products properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
product_ | Product number |
product_ | Product name |
fixed_ | whether fixed |
List all mains products
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
display_ Required | main category number |
Count all mains products
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
display_ Required | main category number |
Create a mains product
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
display_ Required | main category number |
product_ Required | Product number |
Update a mains product
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
display_ Required | main category number |
product_ Required | Product number Rank of product display will designated for requested order. |
fix_ | Fixed product number Designate product for fixed rank. |
Delete a mains product
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
display_ Required | main category number |
product_ Required | Product number |
Products properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
product_ | Product number System assigned code. This code cannot be duplicated. |
product_ Type : [A-Z0-9] | Product code System assigned code. This code cannot be duplicated. |
custom_ Max Length : [40] | Custom product code You may assign this code manually in case of stock management or other reasons. |
product_ Max Length : [250] | Product name Name of product. Basic information to search the product and seperate each product. You may input this with HTML. |
eng_ Max Length : [250] | English name of product English name of product. Necessary when shipping to abroad. |
supply_ Max Length : [250] | Supplier product name Supplier registered name of the product. Supplier may assign this name manually for some reasons. This name does not affect "Name of product". |
internal_ Max Length : [50] | internal product name |
model_ Max Length : [100] | Model name Model name of product |
price_ | product price (before VAT) |
price | Product price Selling price. Price that before applying coupon or other benefits. |
retail_ | Product retail price General price of the product in market. This is used to compare the price of a shopping mall and to emphasize the price of a shopping mall. |
supply_ | Product supply price Value of supply. You may calculate price using "supply_price" and "margin_rate". |
display | Whether display User can choose product should be displayed or not. If product is not displayed, customer can't access product thus cannot buy the product. T: Display |
selling | whether selling User can choose product status should be selling or not. If product is not selling, customer can still access product but cannot buy the product since the product will be displayed as "Sold out". T: Sell |
product_ | Product condition Displays condition of product N: New |
product_ Max : [2147483647] | Months of using the used product |
summary_ Max Length : [255] | Product Summary Description Summary description of product. Can Exposed at product display screen. You may input description with HTML. |
product_ Max Length : [200] | Product tag Search tags. |
margin_ Min : [-999.99]~Max : [999.99] | Margin rate Rate of margin. You may calculate price using "supply_price" and "margin_rate". In API, margin rate is used only for reperence purpose only. |
tax_ | Taxation category Tax type information of product. A: Taxable goods |
tax_ Min : [0]~Max : [100] | Tax rate Tax rate should be informed for the taxable products. |
price_ Max Length : [20] | Alternative phrase of the selling price Price will be replaced by this text when sold-out or unavailable for some reasons. |
buy_ | whether purchase restriction individual setting T: use |
buy_ | Purchase limitation Limit purchase as below information. N: Members only and hide purchase button. |
buy_ | customer levels allowed to purchase the relevant product |
repurchase_ | repurchase restriction T : restrict repurchase |
single_ | single purchase restriction T : restrict single purchase |
buy_ | Type of Purchase unit If the purchase unit of the product is set to 1 or more, the setting of whether the purchase unit is the item unit or the product unit P: Based on product |
buy_ | Minimum unit per purchase Minimum unit per purchase. |
order_ | Criteria of order quantity restriction If you limit the order quantity of the product, you can set whether the limit should be based on item or product unit. P: Based on product |
minimum_ Max : [2147483647] | Minimum quantity per purchase Minimum quantity per purchase. Customer cannot buy the product below the minimum quantity. |
maximum_ Max : [2147483647] | Maximum quantity per purchase Maximum quantity per purchase. Customer cannot buy the product above the maximum quantity. |
points_ | individual settings for points F : use default setting |
points_ | points settings by payment method B : Use the default reserve setting |
points_ | points settings information |
except_ | omit additional points issued based on customer levels T : exclude setting an additional mileage accumulation for member group |
product_ | product volume information |
adult_ | Adult certification Whether the product requires adult certification. Customer needs to be authenticated to purchase products that require adult certification. T: Used |
detail_ | Detail image Detail image' showing on the product detail page. |
list_ | List image List image' showing on the product category page, main page, product search result page. |
tiny_ | Tiny image Small list image' showing on the recently viewed page. |
small_ | Reduced image Reduced image' showing on the bottom side of the product detail page. |
has_ | Whether the option is used Shows product either has an option or not. Product with option offer various choices such as size, color, and flavors. T: use option |
option_ | Type of option Shows type of option when "has_option" is TRUE. C: Combination integration option |
use_ | whether use Naver Pay T: Used |
naverpay_ | Naver Pay sales type C : Naver Pay + Shopping Mall Products at the same time |
manufacturer_ Type : [A-Z0-9] | Manufacturer code Code uses for designate specific manufacturer. This code generated automatically when register a new manufacturer. |
trend_ Type : [A-Z0-9] | Trend code Code uses for designate specific trend. This code generated automatically when register a new trend. |
brand_ Type : [A-Z0-9] | Brand code Code uses for designate specific brand. This code generated automatically when register a new brand. |
supplier_ Type : [A-Z0-9] | Supplier code Code uses for designate specific supplier. This code generated automatically when register a new supplier. |
made_ | Date of manufacture Date of manufacture of the product. |
release_ | Date of release Date of release of the product. |
expiration_ Array Max : [2] | Expiration date Indicate the expiration date of intangible goods such as gift certificates or tickets or type goods such as food or cosmetics. |
origin_ | Origin classification Distinguish the origin of a product. F: domestic |
origin_ | Origin place no List the origin number List all Origin by API |
origin_ Max Length : [30] | Extra information for code of origin You may add additional information if 'origin_place_code' is 1800. |
made_ | Origin country code |
icon_ | Period for showing icon Period for showing icon. |
icon Array Max : [5] | List of icon Icon displays at the product. This icon can use a purpose of emphsize selling. |
hscode | HS code HS code used for customs duties when shipped overseas. Must enter the correct number for international shipment clearance. |
product_ | Weight of product Weight of whole product. Total weight including product, box, and packing weight is necessary for shipping. |
product_ | Material of product The material of the item. You should enter each material and percentage of composing material if the product is has a multiple material. |
created_ timezone | Created date Date when product registered. |
updated_ timezone | Updated date Date when product modified. |
english_ | English product material English version of a material of product. When you using an overseas delivery company, you may be required information of a material of the clothes. |
cloth_ | Fabric of product In case cloth products using a Japanese courier service, material information may required for some shipping companies. woven: Woven |
list_ | Recommend / sold out / new icon expose flag Either showing recommend / sold out / new icon will be exposed or not. |
select_ | Whether select only one by option When using 'independently selectable' option type and this set as TRUE, customer can select only 1 item per option. T: Use |
approve_ | Approve request result N: New request for approval |
classification_ Type : [A-Z0-9] | Classification code Custom classification code for the purpost of self-classification. |
sold_ | Whether sold out or stock is available T: Out-of-stock |
additional_ | Additional amount of the selling price |
discountprice | Product discount sale price Resource
|
decorationimages | Decoration Image Resource
|
benefits | Benefits Resource
|
options | Product Option Resource
|
variants | Variants Resource
|
clearance_ | English name of product Product classification information to use for the purpose of overseas customs clearance. |
clearance_ | Korean product category for overseas customs clearance Product name as Korean |
clearance_ Type : [A-Z0-9] | Clearance category code |
additionalimages | additional image resource
|
exposure_ | types of customers allowed to view the relevant product A: display to all |
exposure_ | customer levels allowed to view the relevant product |
set_ | Product bundle type C: integral type. S: assembled type |
memos | Memos Resource
|
hits | Product hits Resource
|
seo | Product Seo Resource
|
category | Category number Category of the product. Product is marked with this category. |
project_ | planned exhibition number |
description | Detail description of product Detail description of product. You may input description with HTML. |
mobile_ | Mobile version of product description Mobile version of product description. Replace product description to the mobile version when customer access a mobile shopping mall. |
separated_ | add mobile version T: add mobile version product details |
additional_ Array Max : [20] | Additional image 'Additional image' showing on the bottom side of the product detail page. Displayed at similar location with 'Reduced image' and can see 'Additional image' when mouse over at PC version or swipe at mobile version. |
payment_ | Payment info Guidance for payment method. You may input this with HTML. |
shipping_ | Shipping info Guidance for shipping method. You may input this with HTML. |
exchange_ | Exchange info Guidance for exchange and return method. You may input this with HTML. |
service_ | Service info Guidance for service warranty information. You may input this with HTML. |
product_ | Vat tax info Displays text set at VAT text setting menu. |
country_ | HS code by country HS code used for customs duties when shipped overseas. You must enter the correct number for international shipment clearance. |
simple_ | Simple Product Description Simple description of product. Can Exposed at product display screen. You may input description with HTML. |
tags | Product Tag Resource
|
shipping_ | Shipping fee by product Set whether shipping fee will be charged separately or commonly. T: Used |
shipping_ | Shipping method Following is the method when 'individual_delivery' is TRUE 01: regular delivery |
prepaid_ | Whether prepaid shipping fee C: Pay after delivery |
shipping_ | Shipping period (When using 'Shipping charge individually') Average transit time for make a delivery. |
shipping_ | Shipping information Shows whether can only deliver domestically or can deliver to overseas too. A: Domestic only |
shipping_ Max Length : [255] | Shipping area (When using 'Shipping charge individually') Available shipping region. |
shipping_ | Shipping charge (When using 'Shipping charge individually') Type of shipping charge. T: Free shipping R: Fixed rate M: Charge according to purchase amount D: Use different shipping charges per different purchase amount W: Use different shipping charges by product weight C: Use different shipping charges by quantity N: Use different shipping charges per different quantity |
shipping_ | Charge shipping by section If shipping_fee_type is R or N, you can set the shipping cost by defining shipping_fee in the array. |
origin_ | Code of origin Code of origin |
additional_ | Additional information list You may add additional information other than basic information. |
image_ | Image type Image type when uploading image. A: Register a representative image. |
main | whether display at main Displays main display number when display products at main page such as "recommend product" or "new". |
relational_ Array Max : [200] | Related product Related or similar product of selected product. Registered related product display the bottom of the product detail page. |
List all products
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
discountprice embed | Product discount sale price Resource |
decorationimages embed | Decoration Image Resource |
benefits embed | Benefits Resource |
options embed | Product Option Resource |
variants embed | Variants Resource Up to 100 variants can be retrieved per product. |
additionalimages embed | additional image resource |
product_ | Product bundle T: Use |
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ | Product number Number of a product. You can search multiple item with ,(comma) |
display | Whether display Search for products that displayed or not. |
selling | whether selling Search for products that sell or not. |
product_ | Product name Search for products of which names include the search query that you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
product_ | Product code Search for products of which product codes include the search query that you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
brand_ | Brand code Search for products with matching brand codes. You can search multiple item with ,(comma) |
manufacturer_ | Manufacturer code Search for products with matching manufacturer code. You can search multiple item with ,(comma) |
supplier_ | Supplier code Search for products with matching supplier code. You can search multiple item with ,(comma) |
trend_ | Trend code Search for products with matching trend code. You can search multiple item with ,(comma) |
product_ | Product tag Search for products of which product search terms or tags include the search query that you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
custom_ | Custom product code Search for products of which custom product codes include the search query you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
custom_ | Custom variants code You can search multiple item with ,(comma) |
price_ | Minimum price Search for products that price is over a certain range. |
price_ | Maximum price Search for products that price is below a certain range. |
retail_ Min : [0] | Minimum retail price Search for products that retail price is over a certain range. |
retail_ Min : [0] | Maximim retail price Search for products that retail price is below a certain range. |
supply_ | Minimum supply price Search for products that supply price is over a certain range. |
supply_ | Maximum supply price Search for products that supply price is below a certain range. |
created_ timezone | Registered date start Search for products added after the search start date. Must be used with a search end date. If the start date is the same as the end date, results will be retrieved based on the date. |
created_ timezone | Registered date end Search for products added before the search end date. Must be used with a search start date. If the end date is the same as the start date, only results will be retrieved based on the date. |
updated_ timezone | Updated date start Search for products edited after the search start date. Must be used with a search end date. If the start date is the same as the end date, results will be retrieved based on the date. |
updated_ timezone | Updated date end Search for products edited before the search end date. Must be used with a search start date. If the end date is the same as the start date, results will be retrieved based on the date. |
category | Category number Search for items that displayed at a certain category. |
eng_ | English name of product Search for products of which product names (English) include the search query that you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
supply_ | Supplier product name Search for products of which product names (supplier) include the search query that you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
internal_ | internal product name You can search multiple item with ,(comma) |
model_ | Model name Search for products of which model names include the search query that you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
product_ | Product condition Search for products of specific condition. You can search multiple item with ,(comma) |
origin_ | Origin Extra information for code of origin. You may add additional information if 'origin_place_code' is 1800. You can search multiple item with ,(comma) |
stock_ | Maximum stock search Search for items that product stock is below a certain value. |
stock_ | Minimum stock search Search for variants that product stock is above a certain value. |
stock_ | Search of maximum safety inventory quantity |
stock_ | Search of minimum safety inventory quantity |
product_ | Weight of product Search for items that weigh certain kilograms. You can search multiple item with ,(comma) |
classification_ | Classification code You can search multiple item with ,(comma) |
use_ | whether use inventory Whether use inventory management or not at the variants of the products. T: Use |
category_ | Unapplied Category Search for products that category unapplied. T : Search for products that category unapplied |
include_ | include sub category Search for products that include sub category. T: Included |
additional_ | additional information key Search for products that has specific additional information. In order to search, key and value is necessary. |
additional_ | additional information value Search for products that has specific additional information. In order to search, key and value is necessary. |
approve_ | Approval Status N: Approval request (New product) status |
since_ Min : [0] | Search after a certain product number Search products from after a certain product number. Can search regardless of offset. |
sort | Sort order created_date: Created Date |
order | Order by asc: Ascending |
offset Max : [5000] | Start location of list Set the start location of search result. |
limit Min : [1]~Max : [100] | Limit Set the maximum number of search result. DEFAULT 10 |
Count all products
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ | Product number Number of a product. You can search multiple item with ,(comma) |
display | Whether display Search for products that displayed or not. |
selling | whether selling Search for products that sell or not. |
product_ | Product name Search for products of which names include the search query that you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
product_ | Product code System assigned code. This code cannot be duplicated. You can search multiple item with ,(comma) |
brand_ | Brand code Search for products with matching brand codes. You can search multiple item with ,(comma) |
manufacturer_ | Manufacturer code Search for products with matching manufacturer code. You can search multiple item with ,(comma) |
supplier_ | Supplier code Search for products with matching supplier code. You can search multiple item with ,(comma) |
trend_ | Trend code Search for products with matching trend code. You can search multiple item with ,(comma) |
product_ | Product tag Search for products of which product search terms or tags include the search query that you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
custom_ | Custom product code Search for products of which custom product codes include the search query that you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
custom_ | Custom variants code You can search multiple item with ,(comma) |
price_ | Minimum price Search for products that price is over a certain range. |
price_ | Maximum price Search for products that price is below a certain range. |
retail_ Min : [0] | Minimum retail price Search for products that retail price is over a certain range. |
retail_ Min : [0] | Maximim retail price Search for products that retail price is below a certain range. |
supply_ | Minimum supply price Search for products that supply price is over a certain range. |
supply_ | Maximum supply price Search for products that supply price is below a certain range. |
created_ timezone | Registered date start Search for products added after the search start date. Must be used with a search end date. If the start date is the same as the end date, results will be retrieved based on the date. |
created_ timezone | Registered date end Search for products added before the search end date. Must be used with a search start date. If the end date is the same as the start date, results will be retrieved based on the date. |
updated_ timezone | Updated date start Search for products edited after the search start date. Must be used with a search end date. If the start date is the same as the end date, results will be retrieved based on the date. |
updated_ timezone | Updated date end Search for products edited before the search end date. Must be used with a search start date. If the end date is the same as the start date, results will be retrieved based on the date. |
category | Category number Search for items that displayed at a certain category. |
eng_ | English name of product Search for products of which product names (English) include the search query that you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
supply_ | Supplier product name Search for products of which product names (supplier) include the search query that you enter. The search query is case-insensitive. You can search multiple item with ,(comma) |
internal_ | internal product name You can search multiple item with ,(comma) |
model_ | Model name Search for products of which model names contain the search term that you enter. The search term is case-insensitive. You can search multiple item with ,(comma) |
product_ | Product condition Search for products of specific condition. You can search multiple item with ,(comma) |
origin_ | Origin Extra information for code of origin. You may add additional information if 'origin_place_code' is 1800. You can search multiple item with ,(comma) |
stock_ | Maximum stock search Search for items that product stock is below a certain value. |
stock_ | Minimum stock search Search for variants that product stock is above a certain value. |
stock_ | Search of maximum safety inventory quantity |
stock_ | Search of minimum safety inventory quantity |
product_ | Weight of product Search for items that weigh certain kilograms. You can search multiple item with ,(comma) |
classification_ | Classification code Search for products with matching custom classification code. You can search multiple item with ,(comma) |
use_ | whether use inventory Whether use inventory management or not at the variants of the products. T: Use |
category_ | Unapplied Category Search for products that category unapplied. T : Search for products that category unapplied |
include_ | include sub category Search for products that include sub category. T: Included |
additional_ | additional information key Search for products that has specific additional information. In order to search, key and value is necessary. |
additional_ | additional information value Search for products that has specific additional information. In order to search, key and value is necessary. |
approve_ | Approval Status N: Approval request (New product) status |
since_ Min : [0] | Search after a certain product number Search products from after a certain product number. Can search regardless of offset. |
Get a product
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number Number of a product. |
variants embed | Variants Resource |
memos embed | Memos Resource |
hits embed | Product hits Resource |
seo embed | Product Seo Resource |
tags embed | Product Tag Resource |
options embed | Product Option Resource |
discountprice embed | Product discount sale price Resource |
decorationimages embed | Decoration Image Resource |
benefits embed | Benefits Resource |
additionalimages embed | additional image resource |
Create a product
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
display | Whether display Whether display or not. T: Display DEFAULT F |
selling | whether selling Whether selling or not. T: Sell DEFAULT F |
product_ | Product condition N: New DEFAULT N |
product_ Max : [2147483647] | Months of using the used product Used month for the product when product_condition is used product. |
add_ | Category no Register your product in the category you want to display using the category number |
category_no recommend new | |
custom_ Max Length : [40] | Custom product code You may assign this code manually in case of stock management or other reasons. |
product_ Required Max Length : [250] | Product name Name of product. |
eng_ Max Length : [250] | English name of product Name of product in english. |
supply_ Max Length : [250] | Supplier product name |
internal_ Max Length : [50] | internal product name |
model_ Max Length : [100] | Model name Model name of product. |
price_ Min : [0]~Max : [2147483647] | product price (before VAT) If the base for price calculation (calculated_price_based_on) is "B (product price)" when retrieving product settings (GET:/products/setting), price_excluding_tax, not Price, should be used. |
price Min : [0]~Max : [2147483647] | Product price Price of product. |
retail_ Min : [0]~Max : [2147483647] | Product retail price |
supply_ Required Min : [0]~Max : [2147483647] | Product supply price Value of supply. You may calculate price using "supply_price" and "margin_rate". In API, supply_price is used for reference purpose only. |
has_ | Whether the option is used Has an option or not. T: use option DEFAULT F |
options | Option |
name value | |
use_ | whether use Naver Pay This cannot be used on Cafe24 Vietnam, Philippines. T: Used |
naverpay_ | Naver Pay sales type This cannot be used on Cafe24 Vietnam, Philippines. C : Naver Pay + Shopping Mall Products at the same time |
manufacturer_ Type : [A-Z0-9] | Manufacturer code Manufacturer code. DEFAULT M0000000 |
trend_ Type : [A-Z0-9] | Trend code DEFAULT T0000000 |
brand_ Type : [A-Z0-9] | Brand code DEFAULT B0000000 |
supplier_ Type : [A-Z0-9] | Supplier code shipping_fee: shipping DEFAULT S0000000 |
product_ Min : [0]~Max : [999999.99] | Weight of product |
made_ | Date of manufacture |
release_ | Date of release |
expiration_ Array Max : [2] | Expiration date Expiration date. |
start_date end_date | |
description | Detail description of product Detailed description of product. |
mobile_ | Mobile version of product description Mobile version of product description. Replace product description to the mobile version when customer access a mobile shopping mall. |
summary_ Max Length : [255] | Product Summary Description shipping_rates_max: Shipping interval end |
simple_ | Simple Product Description If shipping_fee_type is M, D, W, C, you can set the shipping interval by defining the following in the array. |
product_ Max Length : [200] | Product tag Tag for search product. |
payment_ | Payment info Payment method guidance. |
shipping_ | Shipping info Shipping method guidance. |
exchange_ | Exchange info Exchange/return method guidance. |
service_ | Service info Service query / information guidance. |
icon Array Max : [5] | List of icon Register icon. |
hscode Max Length : [20] | HS code Required if shipping information (shipping_scope) is B (domestic / overseas shipping) or C (overseas shipping) |
shipping_ | Shipping information Shows whether can only deliver domestically or can deliver to overseas too. This cannot be used on Cafe24 Vietnam, Philippines. A: Domestic only |
shipping_ | Shipping method Shipping method(when shipping individually). 01: regular delivery |
shipping_ | Shipping fee by product Shipping charge individually. T: Individual delivery DEFAULT F |
shipping_ Max Length : [255] | Shipping area Shipping area. |
shipping_ Array Max : [2] | Shipping period Transit time. |
minimum maximum | |
shipping_ | Shipping charge Shipping charge. Type of shipping charge when using 'Shipping charge individually'. T: Free shipping R: Fixed rate M: Charge according to purchase amount D: Use different shipping charges per different purchase amount W: Use different shipping charges by product weight C: Use different shipping charges by quantity N: Use different shipping charges per different quantity |
shipping_ Array Max : [200] | Shipping rates If shipping_fee_type is R or N, you can set the shipping cost by defining shipping_fee in the array. |
shipping_rates_min shipping_rates_max shipping_fee | |
prepaid_ | Whether prepaid shipping fee This cannot be used on Cafe24 Vietnam, Philippines. C: Pay after delivery |
clearance_ Type : [A-Z0-9] | Clearance category code Required if shipping information (shipping_scope) is B (domestic / overseas shipping) or C (overseas shipping) |
detail_ | Detail image Detail image. |
list_ | List image List image. |
tiny_ | Tiny image Reduced image. |
small_ | Reduced image shipping_rates_min: Shipping interval start |
image_ | Image type Image type. A: Register a representative image. DEFAULT A |
additional_ | Additional information list Additional item. |
key value | |
price_ Max Length : [20] | Alternative phrase of the selling price |
buy_ | whether purchase restriction individual setting T: use DEFAULT F |
buy_ | Purchase limitation N: Members only and hide purchase button. DEFAULT F |
buy_ | customer levels allowed to purchase the relevant product |
repurchase_ | repurchase restriction T : restrict repurchase DEFAULT F |
single_ | single purchase restriction T : restrict single purchase DEFAULT F |
buy_ | Type of Purchase unit If the purchase unit of the product is set to 1 or more, the setting of whether the purchase unit is the item unit or the product unit P: Based on product DEFAULT O |
buy_ Max : [2147483647] | Minimum unit per purchase Unit of order. DEFAULT 1 |
order_ | Criteria of order quantity restriction If you limit the order quantity of the product, you can set whether the limit should be based on item or product unit. P: Based on product DEFAULT O |
minimum_ Max : [2147483647] | Minimum quantity per purchase Minimum quantity per purchase. Customer cannot buy the product below the minimum quantity. DEFAULT 1 |
maximum_ Max : [2147483647] | Maximum quantity per purchase Maximum quantity per purchase. Customer cannot buy the product above the maximum quantity. |
points_ | individual settings for points F : use default setting DEFAULT F |
points_ | points settings by payment method B : Use the default reserve setting |
points_ | points settings information |
payment_method points_rate points_unit_by_payment | |
except_ | omit additional points issued based on customer levels T : exclude setting an additional mileage accumulation for member group DEFAULT F |
product_ | product volume information |
use_product_volume product_width product_height product_length | |
origin_ | Origin classification Distinguish the origin of a product. F: domestic |
origin_ | Origin place no List the origin number List all Origin by API |
origin_ Max Length : [30] | Extra information for code of origin Extra information for code of origin. You may add additional information if 'origin_place_code' is 1800. |
made_ | Origin country code A two-digit country code for country of origin |
main | whether display at main Displays main display number when display products at main page such as "recommend product" or "new". |
relational_ Array Max : [200] | Related product Related or similar product of selected product. Registered related product display the bottom of the product detail page. |
product_no interrelated | |
product_ | Material of product The material of the item. You should enter each material and percentage of composing material if the product is has a multiple material. |
english_ | English product material English version of a material of product. When you using an overseas delivery company, you may be required information of a material of the clothes. |
cloth_ | Fabric of product In case cloth products using a Japanese courier service, material information may required for some shipping companies. woven: Woven |
classification_ Type : [A-Z0-9] | Classification code |
additional_ Max : [2147483647] | Additional amount of the selling price Additional price is added amount to price in addition to supply price and margin rate. In API, additional price is used only for reperence purpose only. |
margin_ Min : [-999.99]~Max : [999.99] | Margin rate Rate of margin. You may calculate price using "supply_price" and "margin_rate". In API, margin rate is used only for reperence purpose only. |
tax_ | Taxation category Tax type information of product. A: Taxable goods DEFAULT A |
tax_ Min : [0]~Max : [100] | Tax rate Tax rate should be informed for the taxable products. |
additional_ | Additional image Additional image' showing on the bottom side of the product detail page. Displayed at similar location with 'Reduced image' and can see 'Additional image' when mouse over at PC version or swipe at mobile version. |
adult_ | Adult certification This attribute tell you whether the product is age-restricted or not. Customers need to authenticate themselves to purchase age-restricted products. This cannot be used on Cafe24 Vietnam, Philippines. T: Used DEFAULT F |
exposure_ | types of customers allowed to view the relevant product A: display to all DEFAULT A |
exposure_ | customer levels allowed to view the relevant product |
Update a product
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
display | Whether display You can choose product should be displayed or not. T: Display |
selling | whether selling Whether selling or not. T: Sell |
product_ | Product condition N: New |
product_ Max : [2147483647] | Months of using the used product Used month for the product when product_condition is used product. |
add_ | Category no Enter a category number to add a specific product category to the product |
category_no recommend new | |
delete_ | Deleted classification number Enter a category number to delete a specific product category to the product |
custom_ Max Length : [40] | Custom product code You may assign this code manually in case of stock management or other reasons. |
product_ Max Length : [250] | Product name Name of product. |
eng_ Max Length : [250] | English name of product Name of product in english. |
supply_ Max Length : [250] | Supplier product name |
internal_ Max Length : [50] | internal product name |
model_ Max Length : [100] | Model name Model name of product. |
price_ Min : [0]~Max : [2147483647] | product price (before VAT) If the base for price calculation (calculated_price_based_on) is "B (product price)" when retrieving product settings (GET:/products/setting), price_excluding_tax, not Price, should be used. |
price Min : [0]~Max : [2147483647] | Product price Price of product. |
retail_ Min : [0]~Max : [2147483647] | Product retail price |
supply_ Min : [0]~Max : [2147483647] | Product supply price Value of supply. You may calculate price using "supply_price" and "margin_rate". In API, supply_price is used for reference purpose only. |
has_ | Whether the option is used Has an option or not. F: Option not used |
use_ | whether use Naver Pay This cannot be used on Cafe24 Vietnam, Philippines. T: Used |
naverpay_ | Naver Pay sales type This cannot be used on Cafe24 Vietnam, Philippines. C : Naver Pay + Shopping Mall Products at the same time |
manufacturer_ Type : [A-Z0-9] | Manufacturer code Manufacturer code. |
trend_ Type : [A-Z0-9] | Trend code |
brand_ Type : [A-Z0-9] | Brand code |
supplier_ Type : [A-Z0-9] | Supplier code Supplier code. |
product_ Min : [0]~Max : [999999.99] | Weight of product |
made_ | Date of manufacture |
release_ | Date of release |
expiration_ Array Max : [2] | Expiration date Expiration date. |
start_date end_date | |
description | Detail description of product Detailed description of product. |
mobile_ | Mobile version of product description Mobile version of product description. Replace product description to the mobile version when customer access a mobile shopping mall. |
summary_ Max Length : [255] | Product Summary Description Summary description of product. |
simple_ | Simple Product Description Simple description of product. |
product_ Max Length : [200] | Product tag Tag for search product. |
payment_ | Payment info Payment method guidance. |
shipping_ | Shipping info Shipping method guidance. |
exchange_ | Exchange info Exchange/return method guidance. |
service_ | Service info Service query / information guidance. |
icon Array Max : [5] | List of icon |
use_ | whether use show date T: Used |
icon_ | start date of show_date |
icon_ | end date of show_date |
hscode Max Length : [20] | HS code Required if shipping information (shipping_scope) is B (domestic / overseas shipping) or C (overseas shipping) |
shipping_ | Shipping information Shows whether can only deliver domestically or can deliver to overseas too. This cannot be used on Cafe24 Vietnam, Philippines. A: Domestic only |
shipping_ | Shipping method Shipping method(when shipping individually). 01: regular delivery |
shipping_ | Shipping fee by product Shipping charge individually. T: Individual delivery |
shipping_ Max Length : [255] | Shipping area Shipping area. |
shipping_ | Shipping period Transit time. |
minimum maximum | |
shipping_ | Shipping charge Shipping charge. Type of shipping charge when using 'Shipping charge individually'. T: Free shipping R: Fixed rate M: Charge according to purchase amount D: Use different shipping charges per different purchase amount W: Use different shipping charges by product weight C: Use different shipping charges by quantity N: Use different shipping charges per different quantity |
shipping_ Array Max : [200] | Shipping rates If shipping_fee_type is R or N, you can set the shipping cost by defining shipping_fee in the array. |
shipping_rates_min shipping_rates_max shipping_fee | |
prepaid_ | Whether prepaid shipping fee This cannot be used on Cafe24 Vietnam, Philippines. C: Pay after delivery |
clearance_ Type : [A-Z0-9] | Clearance category code Required if shipping information (shipping_scope) is B (domestic / overseas shipping) or C (overseas shipping) |
detail_ | Detail image Detail image. |
list_ | List image List image. |
tiny_ | Tiny image Reduced image. |
small_ | Reduced image Small list image. |
image_ | Image type Image type. A: Register a representative image. |
additional_ | Additional information list Additional item. |
key value | |
price_ Max Length : [20] | Alternative phrase of the selling price |
buy_ | whether purchase restriction individual setting T: use |
buy_ | Purchase limitation N: Members only and hide purchase button. |
buy_ | customer levels allowed to purchase the relevant product |
repurchase_ | repurchase restriction T : restrict repurchase |
single_ | single purchase restriction T : restrict single purchase |
buy_ | Type of Purchase unit If the purchase unit of the product is set to 1 or more, the setting of whether the purchase unit is the item unit or the product unit P: Based on product |
buy_ Max : [2147483647] | Minimum unit per purchase Unit of order. |
order_ | Criteria of order quantity restriction If you limit the order quantity of the product, you can set whether the limit should be based on item or product unit. P: Based on product |
minimum_ Max : [2147483647] | Minimum quantity per purchase Minimum quantity for order. |
maximum_ Max : [2147483647] | Maximum quantity per purchase Maximum quantity per purchase. Customer cannot buy the product above the maximum quantity. |
points_ | individual settings for points F : use default setting |
points_ | points settings by payment method B : Use the default reserve setting |
points_ | points settings information |
payment_method points_rate points_unit_by_payment | |
except_ | omit additional points issued based on customer levels T : exclude setting an additional mileage accumulation for member group |
product_ | product volume information |
use_product_volume product_width product_height product_length | |
origin_ | Origin classification Distinguish the origin of a product. F: domestic |
origin_ | Origin place no List the origin number List all Origin by API |
origin_ Max Length : [30] | Extra information for code of origin Extra information for code of origin. You may add additional information if 'origin_place_code' is 1800. |
made_ | Origin country code A two-digit country code for country of origin |
main | whether display at main Displays main display number when display products at main page such as "recommend product" or "new". |
relational_ Array Max : [200] | Related product Related or similar product of selected product. Registered related product display the bottom of the product detail page. |
product_no interrelated | |
product_ | Material of product The material of the item. You should enter each material and percentage of composing material if the product is has a multiple material. |
english_ | English product material English version of a material of product. When you using an overseas delivery company, you may be required information of a material of the clothes. |
cloth_ | Fabric of product In case cloth products using a Japanese courier service, material information may required for some shipping companies. woven: Woven |
classification_ Type : [A-Z0-9] | Classification code |
additional_ Max : [2147483647] | Additional amount of the selling price Additional price is added amount to price in addition to supply price and margin rate. In API, additional price is used only for reperence purpose only. |
margin_ Min : [-999.99]~Max : [999.99] | Margin rate Rate of margin. You may calculate price using "supply_price" and "margin_rate". In API, margin rate is used only for reperence purpose only. |
tax_ | Taxation category Tax type information of product. A: Taxable goods |
tax_ Min : [0]~Max : [100] | Tax rate Tax rate should be informed for the taxable products. |
additional_ | Additional image Additional image' showing on the bottom side of the product detail page. Displayed at similar location with 'Reduced image' and can see 'Additional image' when mouse over at PC version or swipe at mobile version. |
adult_ | Adult certification This attribute tell you whether the product is age-restricted or not. Customers need to authenticate themselves to purchase age-restricted products. This cannot be used on Cafe24 Vietnam, Philippines. T: Used |
exposure_ | types of customers allowed to view the relevant product A: display to all |
exposure_ | customer levels allowed to view the relevant product |
Delete a product
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Products additionalimages
Products additionalimages, a child resource of Products, lets you retrieve additional images of a product.
Products additionalimages properties
Attribute | Description |
---|---|
shop_ | Shop Number |
additional_ | Additional image |
Create a products additionalimage
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number |
additional_ Required | Additional image ● Maximum number of requests: 20 |
Update a products additionalimage
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number |
additional_ Required | Additional image ● Maximum number of requests: 20 |
Products approve
API which can only be used when mall using products approval function.
Products approve properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
status Required | Approval status Approval status of the product requested. N: Approval request (New product) status |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Get products approve status
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number |
Create a products approve
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
user_ Required | Supplier operator ID ID of supplier operator who requested |
Update a products approve
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
user_ Required | Supplier operator ID ID of supplier operator who requested |
status Required | Approval status Approval status of the product requested. C: Approved status |
Products decorationimages
This resource lets you add special images to products displayed on a store. This resource lets you retrieve decorative images from a store and add them to a certain product, or retrieve the images already added to a product.
This resource can only be used as a child resource of the Products resource.
Products decorationimages properties
Attribute | Description |
---|---|
code | code of decoration image |
path | Decoration Image URL |
shop_ | Shop Number |
use_ | whether use show date T: Use |
show_ timezone | start date of show_date |
show_ timezone | end date of show_date |
image_ | list of decoration image |
List all decoration images
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
List all products decoration images
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Select decoration images to a product
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number |
use_ | whether use show date T: Use |
show_ Date | start date of show_date |
show_ Date | end date of show_date |
image_ Required | list of decoration image |
code path image_horizontal_position image_vertical_position |
Update a decoration images to a product
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
use_ | whether use show date T: Use |
show_ Date | start date of show_date |
show_ Date | end date of show_date |
image_ Required | list of decoration image |
code path image_horizontal_position image_vertical_position |
Deselect a decoration images to a product
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
code Required | code of decoration image |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Products discountprice
A resource about product's discount price. You can retrieve the discount price of products under the Benefits resource.
This resource can only be used as a child resource of the Products resource. You can use the embed parameter in sending a request to retrieve product's discount price in one call.
Products discountprice properties
Attribute | Description |
---|---|
pc_ | PC discount price |
mobile_ | Mobile discount price |
List all products discountprice
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number |
Products hits
Product Views (Hits) is a measure of how much your products are viewed by your shopping mall customers. You can see how many products your customers are viewing most by checking product views.
Product views can only be used in the Products subset as a embedded Resource.
Count all products hits
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Products icons
A product icon is a small image that you can add next to an item to emphasize it. You can emphasize items by adding messages such as discount information, "close to sold out" on the displayed products.
The item icon can only be used in the Products subset as a embedded Resource.
Products icons properties
Attribute | Description |
---|---|
code | code of product icon Code of Icon. |
path | Path URL of Icon. |
shop_ | Shop Number |
use_ | whether use show date T: Use |
show_ timezone | start date of show_date |
show_ timezone | end date of show_date |
image_ | list of product icon |
List all icons
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
List all products icons
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Select product icons to a product
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number |
image_ Required Array Max : [5] | list of product icon |
code |
Update a product icons to a product
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number |
use_ | whether use show date T: Use |
show_ Date | start date of show_date |
show_ Date | end date of show_date |
image_ Array Max : [5] | list of product icon |
code |
Deselect a product icons to a product
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number |
code Required | code of product icon |
Products images
Products Images means the pictures or pictures of the products uploaded for sale. Use the Product Image API to upload an image for use in a product description, or upload an image of a product.
Images of the products can be uploaded by encoding to Base64 code.
Products images properties
Attribute | Description |
---|---|
path | Detail image |
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
product_ | Product number System assigned code. This code cannot be duplicated. |
detail_ | Detail image Detail image' showing on the product detail page. |
list_ | List image 'List image' showing on the product category page, main page, product search result page. |
tiny_ | Tiny image Small list image' showing on the recently viewed page. |
small_ | Reduced image Reduced image' showing on the bottom side of the product detail page. |
Upload Images
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 20 |
Request
Parameter | Description |
---|---|
image Required | Detail image Product image displayed on a product details page. |
Upload product images
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
detail_ | Detail image Detail image' showing on the product detail page. |
list_ | List image 'List image' showing on the product category page, main page, product search result page. |
tiny_ | Tiny image Reduced image' showing on the bottom side of the product detail page. |
small_ | Reduced image Small list image' showing on the recently viewed page. |
image_ Required | Image type You can specify the upload type, whether the image type is representative image or individual image. If you select the representative image (A), uploading the image to the detail image (detail_image) will be reflected in all other images. A: Register a representative image. |
Delete a products image
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Products memos
Products Memos is a brief note that can be used as a tool for memorizing special items or communicating with operators.
Products Memos can only be used in the Products subset as a embedded Resource.
Products memos properties
Attribute | Description |
---|---|
memo_ | Memo number System assigned code. This code cannot be duplicated. |
author_ Max Length : [20] | Author ID ID of memo writer. |
created_ timezone | Created date Written date of memo. |
memo | Important memo Contents of memo. You may input this with HTML.. |
List all products memos
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
product_ Required | Product number System assigned code. This code cannot be duplicated. |
limit Min : [1]~Max : [100] | Limit Set the maximum number of search result. DEFAULT 10 |
offset Max : [8000] | Start location of list |
Get a products memo
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
product_ Required | Product number System assigned code. This code cannot be duplicated. |
memo_ Required | Memo number System assigned code. This code cannot be duplicated. |
Create a products memo
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
product_ Required | Product number System assigned code. This code cannot be duplicated. |
author_ Required Max Length : [20] | Author ID ID of memo writer. |
memo Required | Important memo Contents of memo. You may input this with HTML.. |
Update a products memo
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
product_ Required | Product number System assigned code. This code cannot be duplicated. |
memo_ Required | Memo number System assigned code. This code cannot be duplicated. |
author_ Required Max Length : [20] | Author ID ID of memo writer. |
memo Required | Important memo Contents of memo. You may input this with HTML.. |
Delete a products memo
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
product_ Required | Product number System assigned code. This code cannot be duplicated. |
memo_ Required | Memo number System assigned code. This code cannot be duplicated. |
Products options
This resource allows customers to select a variant for a product that comes in different colors or sizes. This resource has the option_name property, which can for example be color or size, and the option_value property, which can for example be red or yellow. Product variants are generated based on their options when they are added to a product.
This resource can only be used as a child resource of the Products resource.
Products options properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
has_ | Whether the option is used T: Use |
option_ | Type of option Shows type of option when "has_option" is TRUE. T: Combination |
option_ | Option list type If you use the combined option, show the type of the combined option C: Integrated type |
option_ Type : [A-Z0-9] | Option set code If you use the linked with product option, show the option preset code. |
options | Option |
select_ | Whether select only one by option When using 'independently selectable' option type and this set as TRUE, customer can select only 1 item per option. T: Use |
option_ | Option preset name If you use "linked with product" option, show the name of the option set |
use_ | Whether use additional option T: Use |
additional_ | Additional option |
use_ | Whether use attached file option T: Use |
attached_ | Attached file option |
List all products options
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Create a products option
POST
This resource lets you add new product options. Variants are automatically generated when new options are created.
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
has_ | Whether the option is used T: Use |
option_ | Type of option Enter type of option when "has_option" is TRUE. T: Combination |
option_ | Option list type If you use the combined option, enter the type of the combined option S: Combination separation option |
options | Option |
option_name option_value Array option_text option_image_file option_color option_display_type | |
select_ | Whether select only one by option When using 'independently selectable' option type and this set as TRUE, customer can select only 1 item per option. T: Used |
option_ Type : [A-Z0-9] | Option set code |
option_ | Option preset name If you use "linked with product" option, enter the name of the option set |
use_ | Whether use additional option T: Use |
additional_ | Additional option |
additional_option_name additional_option_text_length required_additional_option | |
use_ | Whether use attached file option T: Use |
attached_ | Attached file option |
Update a products option
PUT
This resource does not reset the variants while options are being updated. You can only update option names, option values as well as allow free-form options and file uploads. You cannot add new option variants or delete existing ones.
If you want to add or delete options, you need to first delete them with Delete a products option resource and add them again.
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
option_ | Option list type If you use the combined option, enter the type of the combined option S: Combination separation option |
option_ Type : [A-Z0-9] | Option set code If you use the linked with product option, enter the option preset code. |
options | Option |
option_name option_value Array option_text option_image_file option_link_image option_color option_display_type | |
original_ | Option value before modification |
option_name option_value Array option_text | |
select_ | Whether select only one by option When using 'independently selectable' option type and this set as TRUE, customer can select only 1 item per option. T: Used |
option_ | Option preset name If you use "linked with product" option, enter the name of the option set |
use_ | Whether use additional option T: Use |
additional_ | Additional option |
additional_option_name additional_option_text_length required_additional_option | |
use_ | Whether use attached file option T: Use |
attached_ | Attached file option |
Delete a products option
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Products seo
Products SEO stands for Search Engine Optimization, which allows SEO APIs to better search for products or shopping malls in search engines.
As a e,beded Resource of the product, the Products SEO API can set search engine optimization of the target product.
Products seo properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
meta_ | Browser title Information displayed at product's detail page. Title tag is the most basic information for search which displays at browser. |
meta_ | Meta tag 1: Author Information displayed at tag in product's detail page. You may input the person who manufactured or registered the product. |
meta_ | Meta tag 2: Description Information displayed at tag in product detail page. You may input the information which displays at the search result. |
meta_ | Meta tag 3: Keywords Information displayed at tag in product detail page. You may input keywords that want to be searched. |
meta_ | Alt text of product image Alt text of product image. Image has a better change to be searched if the image has alt text. Browser can shows alt text instead of image which is advantageous for web accessibility. |
search_ | exposure setting for search engine Either expose a product at search engine or not. If this set as FALSE, the product will not exposed at search engine. T: Use |
Get products seo
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Update a products seo
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
meta_ | Browser title Information displayed at product's detail page. Title tag is the most basic information for search which displays at browser. |
meta_ | Meta tag 1: Author Information displayed at tag in product's detail page. You may input the person who manufactured or registered the product. |
meta_ | Meta tag 2: Description Information displayed at tag in product detail page. You may input the information which displays at the search result. |
meta_ | Meta tag 3: Keywords Information displayed at tag in product detail page. You may input keywords that want to be searched. |
meta_ | Alt text of product image Alt text of product image. Image has a better change to be searched if the image has alt text. Browser can shows alt text instead of image which is advantageous for web accessibility. |
search_ | exposure setting for search engine Either expose a product at search engine or not. If this set as FALSE, the product will not exposed at search engine. |
Products tags
This resource is about search keywords that can be added to a product so that search by these keyword can return that product. You can add new tags to a product so that it can be searched not only by the product name or product details but also by the keywords.
This resource can only be used as a child resource of the Products resource.
Products tags properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
tag | Product tag Tag or keyword for product searching. |
tags Required | Product tag |
product_ | Product number System assigned code. This code cannot be duplicated. |
List all products tags
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Count all products tags
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
Create a products tag
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
tag Required | Product tag Tag or keyword for product searching. |
tags Required | Product tag |
Delete a products tag
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
tag | Product tag Tag or keyword for product searching. |
Products variants
Products Variants is the basic unit of goods sold in the shopping mall. Shopping malls usually sell the same items but different sizes or different colors to provide customers with different options.
Products Variants has the following Resource as a embedded Resource:
● Inventories
Endpoints
Products variants properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
variant_ Type : [A-Z0-9] | Product item code System assigned code. This code cannot be duplicated. |
options | Option |
custom_ Max Length : [40] | Custom variants code You may assign this code manually in case of stock management or other reasons. |
display | Whether display Whether display the variants or not. If this set as TRUE, customer may choose the variants at product detail page or product list page. If this set as FALSE, variants will not be displayed thus cannot buy the variants. T: Sell |
selling | whether selling Whether display the variants or not. If this set as TRUE, customer may choose the variants at product detail page or product list page. If this set as FALSE, variants will not be displayed thus cannot buy the variants. T: Display |
additional_ | Additional price Additional price for purchase the variants. |
use_ | whether use inventory T: Use |
important_ | Whether it is an important inventory A: General inventory |
inventory_ | Inventory check criteria A: Based on order |
display_ | whether display sold-out T: Out-of-stock displayed |
quantity | Available inventory |
safety_ | minimum stock level |
inventories | Inventories Resource Inventory Resource of variants. |
duplicated_ | Whether duplicate custom variant code T: Duplicated |
product_ | Product number System assigned code. This code cannot be duplicated. |
List all products variants
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
inventories embed | Inventories Resource Inventory Resource of variants. You can search multiple item with ,(comma) |
Get a products variant
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
variant_ Required Type : [A-Z0-9] | Variant code |
inventories embed | Inventories Resource |
Update a products variant
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
variant_ Required Type : [A-Z0-9] | Product item code System assigned code. This code cannot be duplicated. |
custom_ Max Length : [40] | Custom variants code You may assign this code manually in case of stock management or other reasons. |
display | Whether display Whether display the variants or not. If this set as TRUE, customer may choose the variants at product detail page or product list page. If this set as FALSE, variants will not be displayed thus cannot buy the variants. T: Display |
selling | whether selling Whether display the variants or not. If this set as TRUE, customer may choose the variants at product detail page or product list page. If this set as FALSE, variants will not be displayed thus cannot buy the variants. T: Sell |
additional_ | Additional price Additional price for purchase the variants. |
quantity | Available inventory |
use_ | whether use inventory T: Use |
important_ | Whether it is an important inventory A: General inventory |
inventory_ | Inventory check criteria A: Based on order |
display_ | whether display sold-out T: Out-of-stock displayed |
safety_ | minimum stock level |
Update products variants(batch)
PUT
It is an variants update API which can modify several items of one product at a time.
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 100 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number |
variant_ Required Type : [A-Z0-9] | Product item code |
custom_ Max Length : [40] | Custom variants code |
display | Whether display T: Display |
selling | whether selling T: Sell |
additional_ | Additional price |
quantity | Available inventory |
use_ | whether use inventory T: Use |
important_ | Whether it is an important inventory A: General inventory |
inventory_ | Inventory check criteria A: Based on order |
display_ | whether display sold-out T: Out-of-stock displayed |
safety_ | minimum stock level |
Delete a products variant
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
product_ Required | Product number System assigned code. This code cannot be duplicated. |
variant_ Required Type : [A-Z0-9] | Product item code System assigned code. This code cannot be duplicated. |
Products variants inventories
Products Variants Inventories refers to the quantity of eligible items available for sale. Products Variants Inventories is available for each variant. If the variants sold out over than Products Variants Inventories, the product becomes out of stock status.
Products variants inventories properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
variant_ Type : [A-Z0-9] | Variant code System assigned code. This code cannot be duplicated. |
use_ | whether use inventory Whether use inventory management or not at the variants. You may input inventory when using inventory management option. If the set as FALSE, you may sell product regardless of inventory and cannot use 'Available inventory', 'Inventory check criteria', 'Soldout display' attributes. T: Use |
important_ | Whether it is an important inventory Whether the inventory is important or not. Mall can use this information as a data for search. A: General inventory |
inventory_ | Inventory check criteria Decide when the inventory will be deducted. You may set inventory deduction criteria differently. A: Based on order |
display_ | whether display sold-out Whether display 'Sold out' when if the product use the inventory option. If this set as TRUE(display sold-out), customer cannot purchase the product after displayed as 'Sold out'. 'Sold out' icon will be displayed on the product after every variants being sold out. T: Out-of-stock displayed |
quantity | Available inventory Available inventory to sale. The number will deduct when order or payment made. Available inventory counted to shows 'Sold out' or not. |
safety_ | minimum stock level |
Get products variants inventory
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_product |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
variant_ Required Type : [A-Z0-9] | Variant code Variants code for search sales volume. |
Update a products variants inventory
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_product |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
product_ Required | Product number System assigned code. This code cannot be duplicated. |
variant_ Required Type : [A-Z0-9] | Variant code System assigned code. This code cannot be duplicated. |
use_ | whether use inventory Whether use inventory management or not at the variants. You may input inventory when using inventory management option. If the set as FALSE, you may sell product regardless of inventory and cannot use 'Available inventory', 'Inventory check criteria', 'Soldout display' attributes. T: Use |
important_ | Whether it is an important inventory Whether the inventory is important or not. Mall can use this information as a data for search. A: General inventory |
inventory_ | Inventory check criteria Decide when the inventory will be deducted. You may set inventory deduction criteria differently. A: Based on order |
display_ | whether display sold-out Whether display 'Sold out' when if the product use the inventory option. If this set as TRUE(display sold-out), customer cannot purchase the product after displayed as 'Sold out'. 'Sold out' icon will be displayed on the product after every variants being sold out. T: Out-of-stock displayed |
quantity | Available inventory Available inventory to sale. The number will deduct when order or payment made. Available inventory counted to shows 'Sold out' or not. |
safety_ | minimum stock level |
Collection
Brands
Brands refer to data entered in [Production information>Brand]. You can search products by brand and eveery product must be assigned to a brand (automatically assigned to “private brand” when unassigned.)
Brands properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
brand_ | Brand code |
brand_ Max Length : [50] | Brand name |
use_ | whether to use a brand Whether the brand is being used T: Use |
search_ Max Length : [200] | Search keyword |
product_ | Product count Number of products |
created_ timezone | Created date |
List all brands
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_collection |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
brand_ | Brand code You can search multiple item with ,(comma) |
brand_ | Brand name You can search multiple item with ,(comma) |
use_ | whether to use a brand T: Use |
limit Min : [1]~Max : [100] | Limit Set the maximum number of search result. DEFAULT 10 |
offset Max : [8000] | Start location of list |
Count all brands
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_collection |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
brand_ | Brand code You can search multiple item with ,(comma) |
brand_ | Brand name You can search multiple item with ,(comma) |
use_ | whether to use a brand T: Use |
Create a brand
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_collection |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
brand_ Required | Brand name |
use_ | whether to use a brand T: Use DEFAULT T |
search_ Max Length : [200] | Search keyword |
Update a brand
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_collection |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
brand_ Required Type : [A-Z0-9] | Brand code |
brand_ | Brand name |
use_ | whether to use a brand T: Use DEFAULT T |
search_ Max Length : [200] | Search keyword |
Delete a brand
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_collection |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
brand_ Required Type : [A-Z0-9] | Brand code |
Classifications
Custom category refers to information entered in [Products>Add products>Advanced settings>Production information>Custom category]. It is one of the category types and every product must be assigned to one custom category. If a product is unassigned, it is automatically assigned to Default custom category.
Classifications properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
classification_ Type : [A-Z0-9] | Classification code |
classification_ Max Length : [200] | Classification name |
classification_ Max Length : [300] | Classification description |
use_ | Use classification |
created_ timezone | Created date |
product_ | Product count Number of products. |
List all classifications
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_collection |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
classification_ | Classification code You can search multiple item with ,(comma) |
classification_ | Classification name You can search multiple item with ,(comma) |
use_ | Use classification |
limit Min : [1]~Max : [100] | Limit Set the maximum number of search result. DEFAULT 10 |
offset Max : [8000] | Start location of list |
Count all classifications
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_collection |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
classification_ | Classification code You can search multiple item with ,(comma) |
classification_ | Classification name You can search multiple item with ,(comma) |
use_ | Use classification |
Manufacturers
Manufacturers is an information entered into the "production information" of a product. The manufacturer represents the subject who produced and produced the product, and is one of the sales categories that distinguish the products. The product must have one manufacturer (using "own manufacturer" when not specified)
Manufacturers properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
manufacturer_ Type : [A-Z0-9] | Manufacturer code Unique number of each manufacturer. This number cannot be duplicated in a mall. |
manufacturer_ Max Length : [50] | Manufacturer name Name of manufacturer. Manufacturer name is the basic information for mall to distinguish each manufacturer. |
president_ Max Length : [30] | CEO President name of manufacturer. |
use_ | Use classification Whether use the manufacturer or not. T: Use |
email Max Length : [255] | Email of manufacturer. It can be displayed only in detail inquiry. |
phone Max Length : [20] | Office phone number Phone number of manufacturer. It can be displayed only in detail inquiry. |
homepage Max Length : [255] | Home page Website address of manufacturer. It can be displayed only in detail inquiry. |
zipcode | Zipcode Zipcode of manufacturer. It can be displayed only in detail inquiry. |
address1 Max Length : [255] | Address 1 Address1 of manufacturer. (Street address, P.O. box, company name, c/o) It can be displayed only in detail inquiry. |
address2 Max Length : [255] | Address 2 Address2 of manufacturer. (Apartment, suite, unit, building, floor, etc) It can be displayed only in detail inquiry. |
created_ timezone | Created date It can be displayed only in detail inquiry. |
List all manufacturers
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_collection |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
manufacturer_ | Manufacturer code Code of manufacturer to search. You can search multiple item with ,(comma) |
manufacturer_ | Manufacturer name You can search multiple item with ,(comma) |
use_ | Use manufacturer T: Use |
limit Min : [1]~Max : [100] | Limit Set the maximum number of search result. DEFAULT 10 |
offset Max : [8000] | Start location of list Set the start location of search result. |
Count all manufacturers
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_collection |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
manufacturer_ | Manufacturer code Code of the manufacturer you want to retrieve You can search multiple item with ,(comma) |
manufacturer_ | Manufacturer name Search for manufacturers of which names contain the search term that you enter. The search term is case-insensitive. You can search multiple item with ,(comma) |
use_ | Use manufacturer T: Use |
Get a manufacturer
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_collection |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
manufacturer_ Required Type : [A-Z0-9] | Manufacturer code |
Create a manufacturer
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_collection |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
manufacturer_ Required | Manufacturer name |
president_ Required Max Length : [30] | CEO |
email Max Length : [255] | |
phone Max Length : [20] | Office phone number |
homepage Max Length : [255] | Home page |
zipcode | Zipcode |
address1 Max Length : [255] | Address 1 |
address2 Max Length : [255] | Address 2 |
use_ | Use classification T: Use |
Update a manufacturer
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_collection |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
manufacturer_ Required Type : [A-Z0-9] | Manufacturer code |
manufacturer_ | Manufacturer name |
president_ | CEO |
email Max Length : [255] | |
phone Max Length : [20] | Office phone number |
homepage Max Length : [255] | Home page |
zipcode | Zipcode |
address1 Max Length : [255] | Address 1 |
address2 Max Length : [255] | Address 2 |
use_ | Use classification T: Use |
Origin
Origin means the region where the product was produced. Country of origin is important data for overseas shipping. Cafes 24 coded a variety of countries of origin, and the country of origin code information can be checked through the Origin search API.
Endpoints
Origin properties
Attribute | Description |
---|---|
origin_ | Origin place no |
origin_ | Origin place name |
foreign | Foreign |
made_ | Origin country code |
List all origin
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_collection |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
origin_ | Origin place no |
origin_ Max Length : [50] | Origin place name |
foreign | Foreign |
limit Min : [1]~Max : [100] | Limit Set the maximum number of search result. DEFAULT 10 |
offset Max : [8000] | Start location of list |
Trends
Trends refers to the information that you enter into trends in the "production information" of a product. Trends is one of the sales categories that distinguish products, and products must have one trend (using "basic trends" when not specified).
Trends properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
trend_ Type : [A-Z0-9] | Trend code |
trend_ Max Length : [50] | Trend name |
use_ | whether to use trend Whether use trend or not. T: Use |
created_ timezone | Created date |
product_ | Product count Number of products. |
List all trends
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_collection |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
trend_ | Trend code Code of trend. You can search multiple item with ,(comma) |
trend_ | Trend name Name of trend. You can search multiple item with ,(comma) |
use_ | whether to use trend Whether use trend or not. T: Use |
limit Min : [1]~Max : [100] | Limit Set the maximum number of search result. DEFAULT 10 |
offset Max : [8000] | Start location of list |
Count all trends
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_collection |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
trend_ | Trend code You can search multiple item with ,(comma) |
trend_ | Trend name You can search multiple item with ,(comma) |
use_ | whether to use trend Whether use trend or not. T: Use |
Supply
Suppliers
Suppliers refer to information entered into the supplier by the "production information" of the product. Supplier means a company or individual who can supply goods to the shopping mall and sell the goods. The supplier is one of the sales categories that distinguish the goods, and the goods must have one supplier (use "self-supply" when not specified)
Suppliers properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
supplier_ | Supplier code Unique number of each supplier. This number cannot be duplicated in a mall. |
supplier_ Max Length : [100] | Supplier name Name of supplier. Supplier name is the basic information for mall to distinguish each supplier. |
status | Approval status Business status information with corresponding supplier. A: Business on going |
commission | Commission Commission information for commission payment type(P). |
payment_ | Payment frequency term You can set the payment frequency term. 0: Do not set |
business_ Max Length : [255] | Product type for business Product type of business dealing with supplier. |
payment_ | Payment type You may choose the type of payment to paying with supplier. P: Commission type |
supplier_ | Business type of supplier Business type of supplier. WS: Wholesale |
use_ | Use classification Whether use the supplier or not. T: Use |
created_ timezone | registered date Created date of supplier information. |
updated_ timezone | Updated date Modified date of supplier information. |
country_ | Country code of business address KOR: Korea |
zipcode Max Length : [10] | Zipcode Zipcode of supplier. |
address1 Max Length : [255] | Address 1 Address1 of supplier. (Street address, P.O. box, company name, c/o) |
address2 Max Length : [255] | Address 2 Address2 of supplier. (Apartment, suite, unit, building, floor, etc) |
manager_ | In Charge Person in charge at supplier. |
trading_ | Trade type Trade type which provides from the supplier. It can be displayed only in detail inquiry. D: Reatil |
payment_ | criteria status for payment Criteria status for payment. It can be displayed only in detail inquiry. 10 : complete payment |
payment_ Min : [0]~Max : [6] | Payment start day Process payment at designated date. It can be displayed only in detail inquiry. 0: Sunday |
payment_ Min : [0]~Max : [6] | Payment end day Process payment at designated date. It can be displayed only in detail inquiry. 0: Sunday |
payment_ Min : [1]~Max : [31] | payment start date Set the payment start date in case for Payment frequency term is Monthly term(A) It can be displayed only in detail inquiry. |
payment_ Min : [1]~Max : [31] | payment end date Set the payment end date in case for Payment frequency term is Monthly term(A) It can be displayed only in detail inquiry. |
bank_ Max Length : [50] | Bank code Bank code for close payment to supplier. It can be displayed only in detail inquiry. |
bank_ | Bank account no Bank account number for close payment to supplier. It can be displayed only in detail inquiry. |
bank_ | Bank account holder number Bank account name for close payment to supplier. It can be displayed only in detail inquiry. |
phone Max Length : [20] | Office phone number Office phone number of supplier. It can be displayed only in detail inquiry. |
fax Max Length : [20] | Office fax number Office fax number of supplier. It can be displayed only in detail inquiry. |
market_ | Country code of market address It can be displayed only in detail inquiry. KOR: Korea |
market_ Max Length : [10] | Market address zip code It can be displayed only in detail inquiry. |
market_ | Market address 1 It can be displayed only in detail inquiry. |
market_ | Market address 2 It can be displayed only in detail inquiry. |
exchange_ | Country code of return address It can be displayed only in detail inquiry. KOR: Korea |
exchange_ Max Length : [10] | Return address zip code It can be displayed only in detail inquiry. |
exchange_ Max Length : [255] | Return address 1 It can be displayed only in detail inquiry. |
exchange_ Max Length : [255] | Return address 2 It can be displayed only in detail inquiry. |
homepage_ Max Length : [100] | Home page address It can be displayed only in detail inquiry. |
mall_ Max Length : [100] | Shopping mall address It can be displayed only in detail inquiry. |
account_ Max Length : [10] | Transaction start date It can be displayed only in detail inquiry. |
account_ Max Length : [10] | Transaction stop date It can be displayed only in detail inquiry. |
show_ Max Length : [100] | show supplier information It can be displayed only in detail inquiry. SP: Phone number |
memo Max Length : [255] | Important memo Memo for manage supplier. It can be displayed only in detail inquiry. |
company_ Max Length : [12] | Company registration number Business registration number with corresponding supplier. Displays when unique business registration number issued following to a country. It can be displayed only in detail inquiry. |
company_ | Company name Company name that supplier registered when registration of enterprise. It can be displayed only in detail inquiry. |
president_ | CEO President name that supplier registered when registration of enterprise. It can be displayed only in detail inquiry. |
company_ | Business Company type that supplier registered when registration of enterprise. It can be displayed only in detail inquiry. |
company_ | Business category Company item that supplier registered when registration of enterprise. It can be displayed only in detail inquiry. |
company_ | About us A brief introduction of the supplier. It can be displayed only in detail inquiry. |
List all suppliers
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_supply |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
supplier_ | Supplier code Unique number of each supplier. This number cannot be duplicated in a mall. You can search multiple item with ,(comma) |
supplier_ | Supplier name Name of supplier. Supplier name is the basic information for mall to distinguish each supplier. You can search multiple item with ,(comma) |
limit Min : [1]~Max : [100] | Limit Set the maximum number of search result. DEFAULT 10 |
offset Max : [8000] | Start location of list |
Count all suppliers
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_supply |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
supplier_ | Supplier code Unique number of each supplier. This number cannot be duplicated in a mall. You can search multiple item with ,(comma) |
supplier_ | Supplier name Name of supplier. Supplier name is the basic information for mall to distinguish each supplier. You can search multiple item with ,(comma) |
Get a supplier
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_supply |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
supplier_ Required | Supplier code Unique number of each supplier. This number cannot be duplicated in a mall. |
Create a supplier
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_supply |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
supplier_ Required Max Length : [50] | Supplier name Name of supplier. Supplier name is the basic information for mall to distinguish each supplier. |
manager_ Array Max : [3] | In Charge You can add up to three managers. |
no name phone email | |
use_ | Use classification Whether use the supplier or not. T: Use DEFAULT T |
trading_ | Trade type Trade type which provides from the supplier. D: Reatil DEFAULT D |
supplier_ | Business type of supplier Business type of supplier. WS: Wholesale DEFAULT WS |
status | Approval status Business status information with corresponding supplier. A: Business on going DEFAULT A |
business_ Max Length : [255] | Product type for business Product type of business dealing with supplier. |
payment_ | Payment type You may choose the type of payment to paying with supplier. P: Commission type DEFAULT P |
payment_ | Payment frequency term You can set the payment frequency term. 0: Do not set |
payment_ | criteria status for payment Criteria status for payment. 10 : complete payment |
payment_ Min : [0]~Max : [6] | Payment start day Process payment at designated date. 0: Sunday |
payment_ Min : [0]~Max : [6] | Payment end day Process payment at designated date. 0: Sunday |
payment_ Min : [1]~Max : [31] | payment start date Set the payment start date in case for Payment frequency term is Monthly term(A) |
payment_ Min : [1]~Max : [31] | payment end date Set the payment end date in case for Payment frequency term is Monthly term(A) |
commission | commission rate Commission information for commission payment type(P). DEFAULT 10 |
phone Max Length : [20] | Office phone number Office phone number of supplier. |
fax Max Length : [20] | Office fax number Office fax number of supplier. |
country_ | Country code of business address KOR: Korea |
zipcode Max Length : [10] | Zipcode Zipcode of supplier. |
address1 Max Length : [255] | Address 1 Address1 of supplier. (Street address, P.O. box, company name, c/o) |
address2 Max Length : [255] | Address 2 Address2 of supplier. (Apartment, suite, unit, building, floor, etc) |
market_ | Country code of market address KOR: Korea |
market_ Max Length : [10] | Market address zip code |
market_ | Market address 1 |
market_ | Market address 2 |
exchange_ | Country code of return address KOR: Korea |
exchange_ Max Length : [10] | Return address zip code |
exchange_ Max Length : [255] | Return address 1 |
exchange_ Max Length : [255] | Return address 2 |
homepage_ Max Length : [100] | Home page address |
mall_ Max Length : [100] | Shopping mall address |
account_ Max Length : [10] | Transaction start date |
account_ Max Length : [10] | Transaction stop date |
memo Max Length : [255] | Important memo Memo for manage supplier. |
company_ Max Length : [12] | Company registration number Business registration number with corresponding supplier. Displays when unique business registration number issued following to a country. |
company_ Max Length : [30] | Company name Company name that supplier registered when registration of enterprise. |
president_ Max Length : [20] | CEO President name that supplier registered when registration of enterprise. |
company_ Max Length : [20] | Business Company type that supplier registered when registration of enterprise. |
company_ Max Length : [20] | Business category Company item that supplier registered when registration of enterprise. |
company_ | About us A brief introduction of the supplier. |
Update a supplier
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_supply |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
supplier_ Required Type : [A-Z0-9] | Supplier code Unique number of each supplier. This number cannot be duplicated in a mall. |
supplier_ Max Length : [50] | Supplier name Name of supplier. Supplier name is the basic information for mall to distinguish each supplier. |
use_ | Use classification Whether use the supplier or not. T: Use |
trading_ | Trade type Trade type which provides from the supplier. D: Reatil |
supplier_ | Business type of supplier Business type of supplier. WS: Wholesale |
status | Approval status Business status information with corresponding supplier. A: Business on going |
payment_ | Payment type You may choose the type of payment to paying with supplier. P: Commission type |
payment_ | Payment frequency term You can set the payment frequency term. 0: Do not set |
commission | commission rate Commission information for commission payment type(P). |
manager_ Array Max : [3] | In Charge You can add up to three managers. Information on a specific manager can be edited by using "no". |
no name phone email use_sms | |
business_ Max Length : [255] | Product type for business Product type of business dealing with supplier. |
payment_ | criteria status for payment Criteria status for payment. 10 : complete payment |
payment_ Min : [0]~Max : [6] | Payment start day Process payment at designated date. 0: Sunday |
payment_ Min : [0]~Max : [6] | Payment end day Process payment at designated date. 0: Sunday |
payment_ Min : [1]~Max : [31] | payment start date Set the payment start date in case for Payment frequency term is Monthly term(A) |
payment_ Min : [1]~Max : [31] | payment end date Set the payment end date in case for Payment frequency term is Monthly term(A) |
phone Max Length : [20] | Office phone number Office phone number of supplier. |
fax Max Length : [20] | Office fax number Office fax number of supplier. |
country_ | Country code of business address KOR: Korea |
zipcode Max Length : [10] | Zipcode Zipcode of supplier. |
address1 Max Length : [255] | Address 1 Address1 of supplier. (Street address, P.O. box, company name, c/o) |
address2 Max Length : [255] | Address 2 Address2 of supplier. (Apartment, suite, unit, building, floor, etc) |
market_ | Country code of market address KOR: Korea |
market_ Max Length : [10] | Market address zip code |
market_ | Market address 1 |
market_ | Market address 2 |
exchange_ | Country code of return address KOR: Korea |
exchange_ Max Length : [10] | Return address zip code |
exchange_ Max Length : [255] | Return address 1 |
exchange_ Max Length : [255] | Return address 2 |
homepage_ Max Length : [100] | Home page address |
mall_ Max Length : [100] | Shopping mall address |
account_ Max Length : [10] | Transaction start date |
account_ Max Length : [10] | Transaction stop date |
memo Max Length : [255] | Important memo Memo for manage supplier. |
company_ Max Length : [12] | Company registration number Business registration number with corresponding supplier. Displays when unique business registration number issued following to a country. |
company_ Max Length : [30] | Company name Company name that supplier registered when registration of enterprise. |
president_ Max Length : [20] | CEO President name that supplier registered when registration of enterprise. |
company_ Max Length : [20] | Business Company type that supplier registered when registration of enterprise. |
company_ Max Length : [20] | Business category Company item that supplier registered when registration of enterprise. |
company_ | About us A brief introduction of the supplier. |
Delete a supplier
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_supply |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
supplier_ Required Type : [A-Z0-9] | Supplier code |
Suppliers users
Supplier Users is used when the supplier logs in to the shopping mall and registers the goods directly. You can grant limited rights to supplier operators such as uploading products, managing classifications, and managing bulletin boards.
Suppliers users properties
Attribute | Description |
---|---|
user_ Type : [a-zA-Z0-9] | Supplier operator ID ID of supplier operator when logging in the mall. Supplier operator can access the supplier administrator screen by logging in to the shopping mall administrator page same as the sub operator of the mall. |
supplier_ Max Length : [8] | Supplier code System assigned code of supplier. This code cannot be duplicated. |
supplier_ Max Length : [100] | Supplier name Name of supplier is a basic information which can separate each supplier at the shopping mall administrator page. |
permission_ | Authority to select the classification when a product is registered Set the authority of whether the supplier operator can select the product classification when register product. T: Allow |
permission_ | Authority to modify a product Permission of modify the product for supplier operator after register the product. T: Allow |
permission_ | Authority to display a product Permission of display the product for supplier operator after register the product. T: Allow |
permission_ | Authority to sell a product Permission of selling the product for supplier operator after register the product. T: Allow |
permission_ | Permission to remove registered products Permission of delete the product for supplier operator after register the product. T: Allow |
permission_ | authority setting for board Permission of access bulletin board for supplier operator after register the product. T: Allow |
user_ | Suppliers/Users name Name of the supplier's operator means the name displayed in the "person (processor) who performed the job" when a supplier operator performs a certain operation on the shopping mall manager screen. It can be displayed only in detail inquiry. |
nick_ Length Min : [4]~Max : [20] | Nick name The nickname of the supplier's operator displayed in the "Writer" section if the operator of the supplier creates a post on the bulletin board. (only if the bulletin board is set to expose the 'nickname' instead of the writer name) It can be displayed only in detail inquiry. |
nick_ | Nickname icon type of supplier operator Can select type for Icon that shows in front of supplier operator nickname. It can be displayed only in detail inquiry. D: Register Icon personally |
nick_ Max Length : [255] | Nickname icon url of supplier operator Image path of supplier operator's nickname icon It can be displayed only in detail inquiry. |
use_ | Nickname icon display setting Whether display nickname icon or not when supplier operator creates a post on the bulletin board. It can be displayed only in detail inquiry. T: Display |
use_ | Board writer display setting Whether display writer's name or not when supplier operator creates a post on the bulletin board. It can be displayed only in detail inquiry. T: Display |
Email address of supplier operator. Can be used for store of supplier's contact information. It can be displayed only in detail inquiry. | |
phone | Office phone number Phone number of supplier operator. Can be used for store of supplier's contact information. It can be displayed only in detail inquiry. |
permission_ | Number of multi shopping mall A unique number assigned to a store using the default store language or other languages It can be displayed only in detail inquiry. |
permitted_ | Permission of classification access A product category that a supplier operator can select when registering a product. The supplier operator can upload the product only to the product category of selectable when registering the product. It can be displayed only in detail inquiry. |
List all suppliers users
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_supply |
Request Limit | 10 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
user_ Type : [a-zA-Z0-9] | Supplier operator ID ID of supplier operator when logging in the mall. Supplier operator can access the supplier administrator screen by logging in to the shopping mall administrator page same as the sub operator of the mall. |
supplier_ Max Length : [8] | Supplier code System assigned code of supplier. This code cannot be duplicated. |
supplier_ Max Length : [100] | Supplier name Name of supplier is a basic information which can separate each supplier at the shopping mall administrator page. |
Count all suppliers users
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_supply |
Request Limit | 10 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
user_ Type : [a-zA-Z0-9] | Supplier operator ID ID of supplier operator when logging in the mall. Supplier operator can access the supplier administrator screen by logging in to the shopping mall administrator page same as the sub operator of the mall. |
supplier_ Max Length : [8] | Supplier code System assigned code of supplier. This code cannot be duplicated. |
supplier_ Max Length : [100] | Supplier name Name of supplier is a basic information which can separate each supplier at the shopping mall administrator page. |
Get a suppliers user
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_supply |
Request Limit | 10 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
user_ Type : [a-zA-Z0-9] | Supplier operator ID ID of supplier operator when logging in the mall. Supplier operator can access the supplier administrator screen by logging in to the shopping mall administrator page same as the sub operator of the mall. |
Personal
Carts
Endpoints
Carts properties
Attribute | Description |
---|---|
shop_ | Shop Number |
basket_ | cart item number |
member_ | Member id |
created_ timezone | date of deposition |
product_ | Product number |
additional_ | Additional option |
variant_ Type : [A-Z0-9] | Product item code |
quantity | Available inventory |
product_ | Product price |
option_ | Option price |
product_ | Product bundle T: Set product |
shipping_ | Delivery type A: Domestic |
category_ | Category number |
List all carts
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_personal |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
member_ Required | Member id You can search multiple item with ,(comma) |
offset Max : [10000] | Start location of list |
limit Min : [1]~Max : [100] | Limit DEFAULT 10 |
Customers wishlist
Customers wishlist is a relational resource that lets you retrieve a list of products in a customer's wishlist.
Customers wishlist properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
wishlist_ | number of a wishlist product |
product_ | Product number |
variant_ Type : [A-Z0-9] | Variant code System assigned code. This code cannot be duplicated. |
additional_ | Additional option |
attached_ | Attached file option |
price | Product price Selling price. Price that before applying coupon or other benefits. |
product_ | Product bundle |
created_ timezone | date of deposition Date when an item was added to the wishlist. |
price_ Max Length : [20] | Alternative phrase of the selling price |
List all customers wishlist
GET
Search a list of wishlist products of a customer.
Specification
Property | Description |
---|---|
SCOPE | mall.read_personal |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
member_ Required | Member id |
shop_ | Shop Number DEFAULT 1 |
Count all customers wishlist
GET
Count wishlist products of a customer.
Specification
Property | Description |
---|---|
SCOPE | mall.read_personal |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
member_ Required | Member id |
shop_ | Shop Number DEFAULT 1 |
Products carts
Products carts properties
Attribute | Description |
---|---|
shop_ | Shop Number |
member_ | Member id |
created_ timezone | date of deposition |
product_ | Product number |
variant_ | Product item code |
quantity | Available inventory |
product_ | Product bundle T: Set product |
List all products carts
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_personal |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number |
limit Min : [1]~Max : [100] | Limit DEFAULT 10 |
offset Max : [10000] | Start location of list |
Count all products carts
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_personal |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
product_ Required | Product number |
Order
Cancellation
Cancellation properties
Attribute | Description |
---|---|
shop_ Min : [1] | Shop Number |
order_ | Order ID |
claim_ | cancellation number |
claim_ | division It can be displayed only in detail inquiry. A: change of mind |
claim_ | Reason It can be displayed only in detail inquiry. |
refund_ | Refund method It can be displayed only in detail inquiry. |
refund_ | Remarks It can be displayed only in detail inquiry. |
order_ | Purchase amount It can be displayed only in detail inquiry. |
refund_ | refund amount It can be displayed only in detail inquiry. |
shipping_ | shipping fee It can be displayed only in detail inquiry. |
return_ | Return shipping cost classification It can be displayed only in detail inquiry. |
defer_ | Postpayment Fee It can be displayed only in detail inquiry. |
partner_ | Affiliate discount cancellation amount It can be displayed only in detail inquiry. |
add_ | Extra discount discount by product It can be displayed only in detail inquiry. |
member_ | Membership Discount Discount Amount It can be displayed only in detail inquiry. |
shipping_ | Shipping discount cancellation amount It can be displayed only in detail inquiry. |
coupon_ | Coupon discount cancellation amount It can be displayed only in detail inquiry. |
point_ | Reimbursement Return Used It can be displayed only in detail inquiry. |
credit_ | Deposit Refund Used It can be displayed only in detail inquiry. |
items | Order item code |
status | Order status canceled : canceled |
Get a cancellation
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
claim_ Required | Cancellation number |
Create cancellation
POST
This API allows you to process cancellations for multiple orders awaiting shipment. When cancellations are processed by using this API, orders will be marked as canceled, but you need to cancel payments via payment gateways.
For partial cancellations, refund amount for each order will be automatically calculated and processed.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 100 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
status Required | Order status canceled : canceled |
recover_ | Inventory Recovery T : Recover DEFAULT F |
recover_ | restore a coupon Unavailable for marketplace or NAVER Pay order cancellations T : Recover DEFAULT F |
add_ | add to admin memo Unavailable for marketplace or NAVER Pay order cancellations T: Enable DEFAULT F |
reason Max Length : [2000] | reason for cancellation |
claim_ | type of reason for cancellation Unavailable for marketplace or NAVER Pay order cancellations A: change of mind |
naverpay_ | reason for NAVER Pay order cancellation Unavailable for Cafe24 store or marketplace order cancellations This cannot be used on Cafe24 Vietnam, Philippines. 51 : change of mind |
refund_ | Refund method T : cash |
combined_ | Mixed refund methods When credit card, bank transfer or mobile payment is selected as refund method (refund_method_code), another payment method that will be used to receive refunds for an order paid with multiple payment methods can be selected. T : cash |
refund_ | code assigned to bank for refunds Required when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [250] | Bank name Required when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [50] | Refund account number Available only when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [15] | Refund Account Account Holder's Name |
items | Order item code |
order_item_code quantity |
Cashreceipt
Cashreceipt properties
Attribute | Description |
---|---|
cashreceipt_ | Cash receipt number |
approval_ | Approval Number |
request_ | Date requested |
order_ | Order ID |
member_ | Member id |
name | Requester |
order_ | Purchase amount |
vat | VAT |
subtotal | Subtotal |
order_ | Order status Awaiting payment: unpaid |
status | status Requested: request |
type | Issuance type Individual: personal |
company_ | Company registration number |
cellphone | Mobile |
tax_ | Tax amount |
tax_ | Deductions |
supply_ | Total cost |
List all cashreceipt
GET
This API can only be used in stores using Korean.
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
start_ Required Date | Search Start Date |
end_ Required Date | Search End Date |
order_ Order ID | Order ID |
approval_ Max Length : [9] | Approval Number |
name Max Length : [20] | Requester |
member_ Max Length : [20] | Member id |
status | status All: all DEFAULT all |
limit Min : [1]~Max : [500] | Limit DEFAULT 10 |
offset Max : [8000] | Start location of list |
Create a cashreceipt
POST
This API can only be used in stores using Korean.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
order_ Required Order ID | Order ID |
type Required | Issuance type Individual: personal |
company_ Business Number | Company registration number |
cellphone Mobile | Mobile |
Update a cashreceipt
PUT
This API can only be used in stores using Korean.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
cashreceipt_ Required Min : [1] | Cash receipt number |
order_ Required Order ID | Order ID |
type | Issuance type Individual: personal |
company_ Business Number | Company registration number |
cellphone Mobile | Mobile |
Cashreceipt cancellation
Cashreceipt cancellation properties
Attribute | Description |
---|---|
cashreceipt_ | Cash receipt number |
order_ | Order ID |
status | status Request canceled: canceled_request |
Update a cashreceipt cancellation
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
cashreceipt_ Required Min : [1] | Cash receipt number |
order_ Required Order ID | Order ID |
type Required | Cancellation type Cancel request: request |
Collectrequests
Collectrequests properties
Attribute | Description |
---|---|
shop_ | Shop Number |
request_ | Request number |
order_ | Order ID |
order_ | Order item code |
shipping_ | Collection shipping company name |
collect_ | Collection tracking number |
Update a collectrequest
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 30 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
request_ Required | Request number |
collect_ Required Max Length : [30] | Collection tracking number |
Exchange
Endpoints
Exchange properties
Attribute | Description |
---|---|
shop_ | Shop Number It can be displayed only in detail inquiry. |
order_ | Order ID It can be displayed only in detail inquiry. |
claim_ | Exchange number It can be displayed only in detail inquiry. |
claim_ | division It can be displayed only in detail inquiry. A: change of mind |
claim_ | Reason It can be displayed only in detail inquiry. |
claim_ | Estimated exchange date It can be displayed only in detail inquiry. |
receiver | Receiver It can be displayed only in detail inquiry. |
reshipping_ | reshipping details It can be displayed only in detail inquiry. |
pickup | Pickup - Address It can be displayed only in detail inquiry. |
additional_ | Additional payment It can be displayed only in detail inquiry. |
return_ | return tracking number It can be displayed only in detail inquiry. |
return_ | return shipping carrier It can be displayed only in detail inquiry. |
refund_ | Refund method It can be displayed only in detail inquiry. |
refund_ | Remarks It can be displayed only in detail inquiry. |
order_ | Purchase amount It can be displayed only in detail inquiry. |
refund_ | refund amount It can be displayed only in detail inquiry. |
shipping_ | shipping fee It can be displayed only in detail inquiry. |
return_ | Return shipping cost classification It can be displayed only in detail inquiry. |
defer_ | Postpayment Fee It can be displayed only in detail inquiry. |
partner_ | Affiliate discount cancellation amount It can be displayed only in detail inquiry. |
add_ | Extra discount discount by product It can be displayed only in detail inquiry. |
member_ | Membership Discount Discount Amount It can be displayed only in detail inquiry. |
shipping_ | Shipping discount cancellation amount It can be displayed only in detail inquiry. |
coupon_ | Coupon discount cancellation amount It can be displayed only in detail inquiry. |
point_ | Reimbursement Return Used It can be displayed only in detail inquiry. |
credit_ | Deposit Refund Used It can be displayed only in detail inquiry. |
items | Item Resource It can be displayed only in detail inquiry. |
exchanged_ | Exchanged items It can be displayed only in detail inquiry. |
Get an exchange
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
claim_ Required | Exchange number |
Orders
Order is a request from a shopping mall customer to a shopping mall to purchase a product. The shop operator will deliver the goods to the shopping mall customer based on the order information that has been paid. The order information includes information about the orderer who made the order and payment, and the recipient information for shipping the item.
The order has the following Resource as embedded Resource.
● Items
● Recipient Information
Orders properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
currency | Currency Currecy unit of a mall. |
order_ | Order ID |
market_ | Market id Unique ID of a market for distinguish each website in case customer purchase through price comparison site. |
market_ | marketplace other information Other information of market or order path. |
member_ | Member id |
member_ | customer email |
member_ | Member authentication Member authentication type. Customer divided as 4 types based on member authentication. T: authorized |
billing_ | Billing name Name of billing. May differ from orderer name or recipient name. |
bank_ | Bank code |
bank_ | Bank name |
payment_ | payment method code Code of payment method that orderer used for payment. cash : deposit without a bankbook |
payment_ | Payment method name Name of payment method that orderer used for payment. |
payment_ | Payment gateway name Name of payment gateway that orderer used for payment. |
sub_ | International payment method name |
sub_ | International payment method code |
paid | Paid Whether or not the order was paid for T: Paid |
order_ timezone | Ordered date |
first_ | First order Whether the order is the first order from the customer or not. T: First order |
payment_ timezone | Payment date |
order_ | Mobile type whether order made on mobile T: Made on mobile |
use_ | Whether to use Escrow whether customer used escrow or not T: Used escrow |
group_ | Customer group number when ordering |
initial_ | initial payment details |
actual_ | final payment details |
bank_ | Bank account no Bank account number of shooping mall of the specific order. |
bank_ | Bank account holder number |
market_ | market vendor ID |
payment_ | order total |
cancel_ timezone | Order cancellation date |
order_ | Order path text |
order_ | Available order path |
payment_ | Whether payment is confirmed T: confirmed payment |
commission | Transaction fee |
postpay | Whether postpaid T: Payment after delivery |
admin_ | manually input amount |
additional_ | Additional shipping fee |
international_ | International shipping insurance |
additional_ | Additional handling fee |
shipping_ | Delivery type Shipping delivery type. Whether domestic shipping or abroad shipping or both. A: Domestic |
shipping_ | Delivery type Description of shipping type. Whether domestic shipping or abroad shipping or both. |
shipping_ | Delivery status F: Before delivery |
wished_ | Desired delivery date |
wished_ | Desired delivery time |
wished_ | Desired courier code |
wished_ | name of preferred shipping carrier |
return_ timezone | Return approval time |
total_ | Total supply price |
naver_ | NAVER points |
additional_ | Additional order info |
store_ | Store pickup T: Store pickup |
easypay_ | Easypay payment gateway name |
loan_ | Loan status OK : GOOD |
subscription | subscription billing in use T: subscription billing in use |
items | Item Resource
|
receivers | Receiver Resource
|
buyer | Orderer Resource
|
shipping_ | Shipping fee information |
regional_ | Regional surcharge details |
return | Return Details Resource
|
cancellation | Cancellation details Resource
|
exchange | Exchange details Resource
|
multiple_ | Multi-address order T: Yes (Multi-address order) |
exchange_ | Exchange rate |
first_ | initial payment method code cash : deposit without a bankbook |
naverpay_ | NaverPay PG payment information P: PG payment |
customer_ | Customer group number when ordering Customer group number when order occurred. It can be displayed only in detail inquiry. |
benefits | Benefits Resource
It can be displayed only in detail inquiry. |
coupons | Coupon Resource
It can be displayed only in detail inquiry. |
refunds | refund details resource
It can be displayed only in detail inquiry. |
process_ | Order status prepare: preparing for shipment |
order_ | Order item code |
List all orders
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
items embed | Item Resource |
receivers embed | Receiver Resource |
buyer embed | Orderer Resource |
return embed | Return Details Resource |
cancellation embed | Cancellation details Resource |
exchange embed | Exchange details Resource |
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
start_ Required Date | Search Start Date start date for search |
end_ Required Date | Search End Date Search end date for specific search criteria. |
order_ Order ID | Order ID You can search multiple item with ,(comma) |
order_ | Order status Order status. Each status has its own code. You can search multiple item with ,(comma) N00: awaiting payment |
member_ | Member type Whether member or not. Each has its own code. 2: Member |
group_ | Group number |
buyer_ | Buyer name Name of orderer. May differ from billing name or recipient name. |
receiver_ | Receiver name Name of recipient. May differ from orderer name or billing name. |
name_ | Receiver name (Pronunciation) |
receiver_ | Receiver address Address of recipient. May differ from orderer address or billing address. |
member_ | Member id member id |
member_ | customer email |
product_ | Product number System assigned code. This code cannot be duplicated. |
product_ | Product code System assigned code. This code cannot be duplicated. |
date_ | Date type Date type for search. Default is date of order. order_date: order date DEFAULT order_date |
supplier_ | Supplier id You can search multiple item with ,(comma) |
order_ | Available order path You can search multiple item with ,(comma) cafe24:Cafe24 |
buyer_ | Buyer mobile number |
buyer_ | Buyer phone number |
buyer_ | Buyer Email |
inflow_ | sales funnel |
subscription | subscription billing in use T: subscription billing in use |
market_ | marketplace order cancellation T: cancellation requested marketplace order |
payment_ | payment method code You can search multiple item with ,(comma) cash : deposit without a bankbook |
payment_ | Payment gateway name You can search multiple item with ,(comma) |
market_ | market vendor ID |
limit Min : [1]~Max : [500] | Limit Set the maximum number of search result. DEFAULT 10 |
offset Max : [8000] | Start location of list |
Count all orders
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
start_ Required Date | Search Start Date Search start date for specific search criteria. |
end_ Required Date | Search End Date Search end date for searching orders. Must be used with a search start date. |
order_ Order ID | Order ID You can search multiple item with ,(comma) |
order_ | Order status Order status. Each status has its own code. You can search multiple item with ,(comma) N00: awaiting payment |
member_ | Member type Customer settings. Different codes are assigned to customers and guests. 2: Member |
group_ | Group number |
buyer_ | Buyer name Name of customer who orders the product. It may be different from the name of the depositor or the recipient. |
receiver_ | Receiver name Name of the recipient. May differ from the address of the customer or the depositor |
name_ | Receiver name (Pronunciation) |
receiver_ | Receiver address Address of the recipient. May differ from the address of the customer or the depositor |
member_ | Member id Customer ID |
member_ | customer email |
product_ | Product number Product number |
product_ | Product code Search for products of which product codes include the search query that you enter. The search query is case-insensitive. |
date_ | Date type Date filter type for search. The default value is date of order. order_date: order date DEFAULT order_date |
supplier_ | Supplier id You can search multiple item with ,(comma) |
order_ | Available order path You can search multiple item with ,(comma) cafe24:Cafe24 |
buyer_ | Buyer mobile number |
buyer_ | Buyer phone number |
buyer_ | Buyer Email |
inflow_ | sales funnel |
subscription | subscription billing in use T: subscription billing in use |
market_ | marketplace order cancellation T: cancellation requested marketplace order |
payment_ | payment method code You can search multiple item with ,(comma) cash : deposit without a bankbook |
payment_ | Payment gateway name You can search multiple item with ,(comma) |
market_ | market vendor ID |
Get an order
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID |
items embed | Item Resource |
receivers embed | Receiver Resource |
buyer embed | Orderer Resource |
benefits embed | Benefits Resource |
coupons embed | Coupon Resource |
return embed | Return Details Resource |
cancellation embed | Cancellation details Resource |
exchange embed | Exchange details Resource |
refunds embed | refund details resource |
Update an order
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
process_ Required | Order status prepare: preparing for shipment |
order_ | Order item code |
Update orders
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 100 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
process_ Required | Order status prepare: preparing for shipment |
order_ | Order item code |
Orders autocalculation
Orders autocalculation properties
Attribute | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
order_ | Order ID |
Delete an orders autocalculation
DELETE
Access to this API is limited to certain clients only. Please contact Cafe24 Developers to access it.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID |
Orders buyer
A resource about a customer’s name, contact information, and address. You can only use this resource as a child resource of the Order resource.
Orders buyer properties
Attribute | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages |
member_ | Member id |
member_ | customer group number when ordered Customer group number. |
name | Buyer name Name of recipient. May differ from orderer name or billing name. |
names_ | orderer name in Japanese Furigana |
Buyer Email email of the customer | |
phone | Buyer phone number Phone number of a buyer. |
cellphone | Buyer mobile number Cellphone number of a buyer. |
customer_ | customer notification Note for customer to know. |
updated_ timezone | Updated date |
user_ | ID of the persons modified the orderer Id of a person who updated buyer information. |
user_ | name of the persons modified the order Nmae of a person who updated buyer information. |
order_ Order ID | Order ID order number |
Get an orders buyer
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID order number |
Update an orders buyer
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
order_ Required Order ID | Order ID order number |
name | Buyer name Name of recipient. May differ from orderer name or billing name. |
email | Buyer Email email of the customer |
phone | Buyer phone number Phone number of a buyer. |
cellphone | Buyer mobile number Cellphone number of a buyer. |
customer_ | customer notification Note for customer to know. |
Orders buyer history
Orders buyer history properties
Attribute | Description |
---|---|
shop_ Min : [1] | Shop Number |
name | Buyer name |
email | Buyer Email |
phone | Buyer phone number |
cellphone | Buyer mobile number |
customer_ | customer notification |
updated_ timezone | Updated date |
user_ | ID of the persons modified the orderer |
user_ | name of the persons modified the order |
List all orders buyer history
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID |
Orders cancellation
Orders cancellation properties
Attribute | Description |
---|---|
shop_ Min : [1] | Shop Number |
order_ | Order ID |
status | Order status canceled : canceled |
claim_ | cancellation number |
items | Order item code |
Create an orders cancellation
POST
This API allows you to process cancellations for a specific order. When cancellations are processed by using this API, orders will be marked as canceled and payments will be canceled via payment gateways. (When "T" is used for "payment_gateway_cancel")
For partial cancellations, refund amount for each order will be automatically calculated and processed.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
payment_ | PG cancellation request settings Cancellations cannot be processed via payment gateways when multiple payment methods have been used. Cancellations must be processed through Cafe24 admin system. T : cancel DEFAULT F |
status Required | Order status canceled : canceled |
recover_ | Inventory Recovery T : Recover DEFAULT F |
recover_ | restore a coupon Unavailable for marketplace or NAVER Pay order cancellations T : Recover DEFAULT F |
add_ | add to admin memo Unavailable for marketplace or NAVER Pay order cancellations T: Enable DEFAULT F |
reason Max Length : [2000] | reason for cancellation |
claim_ | type of reason for cancellation Unavailable for marketplace or NAVER Pay order cancellations A: change of mind |
naverpay_ | reason for NAVER Pay order cancellation Unavailable for Cafe24 store or marketplace order cancellations This cannot be used on Cafe24 Vietnam, Philippines. 51 : change of mind |
refund_ | Refund method T : cash |
combined_ | Mixed refund methods When credit card, bank transfer or mobile payment is selected as refund method (refund_method_code), another payment method that will be used to receive refunds for an order paid with multiple payment methods can be selected. (Only "F" can be used for "payment_gateway".) T : cash |
refund_ | code assigned to bank for refunds Required when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [250] | Bank name Required when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [50] | Refund account number Required when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [15] | Refund Account Account Holder's Name |
items | Order item code |
order_item_code quantity |
Orders inflowgroups
Orders inflowgroups properties
Attribute | Description |
---|---|
inflow_ | traffic source ID |
inflow_ | traffic source name |
List all orders inflowgroups
GET
Access to this API is limited to certain clients only. Please contact Cafe24 Developers to access it.
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Create an orders inflowgroup
POST
Access to this API is limited to certain clients only. Please contact Cafe24 Developers to access it.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
inflow_ Required Max Length : [40] | traffic source ID |
inflow_ Required Max Length : [100] | traffic source name |
Update an orders inflowgroup
PUT
Access to this API is limited to certain clients only. Please contact Cafe24 Developers to access it.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
inflow_ Required Type : [a-zA-Z0-9] | traffic source ID |
inflow_ Required Max Length : [100] | traffic source name |
Delete an orders inflowgroup
DELETE
Access to this API is limited to certain clients only. Please contact Cafe24 Developers to access it.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
inflow_ Required Max Length : [40] | traffic source ID |
Orders inflowgroups inflows
Orders inflowgroups inflows properties
Attribute | Description |
---|---|
inflow_ | traffic source medium ID |
inflow_ | traffic source medium name |
inflow_ | funnel icon |
group_ | traffic source ID |
List all orders inflowgroups inflows
GET
Access to this API is limited to certain clients only. Please contact Cafe24 Developers to access it.
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
group_ Required Max Length : [40] | traffic source ID |
Create an orders inflowgroups inflow
POST
Access to this API is limited to certain clients only. Please contact Cafe24 Developers to access it.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
group_ Required Max Length : [40] | traffic source ID |
inflow_ Required Max Length : [40] | traffic source medium ID |
inflow_ Required Max Length : [100] | traffic source medium name |
inflow_ Required URL | funnel icon |
Update an orders inflowgroups inflow
PUT
Access to this API is limited to certain clients only. Please contact Cafe24 Developers to access it.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
group_ Required Max Length : [40] | traffic source ID |
inflow_ Required Max Length : [40] | traffic source medium ID |
inflow_ Required Max Length : [100] | traffic source medium name |
inflow_ Required URL | funnel icon |
Delete an orders inflowgroups inflow
DELETE
Access to this API is limited to certain clients only. Please contact Cafe24 Developers to access it.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
group_ Required Max Length : [40] | traffic source ID |
inflow_ Required Max Length : [40] | traffic source medium ID |
Orders items
Items is the item information purchased by the shopping mall customer when ordering. Items in the shopping mall are the basic units of items sold in the shopping mall. In addition to the item information of the purchased items, you can also check the information on the options, order quantity, and so on.
Items can only be used in the Order subset as a embedded Resource.
Orders items properties
Attribute | Description |
---|---|
shop_ | Shop Number |
item_ | Item no Identification number of order item. |
order_ | Order item code Identification code of order item. |
variant_ | Variant code System assigned code to variant. This code cannot be duplicated. |
product_ | Product number System assigned code. This code cannot be duplicated. |
product_ | Product code System assigned code. This code cannot be duplicated. |
custom_ Max Length : [40] | Custom product code |
custom_ | Custom variants code |
eng_ | English name of product English name of product. Necessary when shipping to abroad. |
option_ | Option id Identification number of product option. |
option_ | Option value Option value of product option. |
option_ | Default option |
additional_ | Additional option value |
additional_ | custom text list |
product_ | Product name Name of product. Basic information to search the product and seperate each product. You may input this with HTML. |
product_ | Default product name |
product_ | Product price Product price. If mall using multi mall, the price will be transfer to multi mall currency. |
option_ | Option price Additional price when option has additional price. |
additional_ | Additional discount price Additional discount price for product. |
coupon_ | discount price for product-specific coupon |
app_ | product discount price for app |
actual_ | Amount paid per item |
quantity | Available inventory Quantity of ordered product. |
product_ | Tax classify by products A: Taxable |
tax_ | Tax rate |
supplier_ | Supplier product name Product name of supplier. |
supplier_ | Supplier transaction type Transaction type of supplier. D: Direct registration type |
supplier_ | Supplier id ID of supplier. |
supplier_ | Supplier name Name of supplier. |
tracking_ | Tracking number |
shipping_ | Shipping code Shipping code of order. System assigns the code when order status changes to 'Ready for shipping : N21' status. |
claim_ | Cancellation/Exchange/Return Number |
claim_ | type of cancellation/exchange/return request reason Type of reason for cancellation/exchange/refund request submitted by a customer |
claim_ | reason for cancellation/exchange/return request Detailed reason for cancellation/exchange/refund request submitted by a customer |
refund_ | Bank name |
refund_ | Refund account number |
refund_ | Refund Account Account Holder's Name |
post_ | Post express flag Whether post express linked or not. |
order_ | Order status Order status. Each status has its own code. |
request_ | undone request type Cancellation: cancellation undone |
order_ | Order status additional info order status additional info |
claim_ | number of cancellation/exchange/return requests |
status_ | Status code Current status code. N1: Normal |
status_ | Status text Description of current status. |
open_ | Open market status |
bundled_ | combined shipment type Bundel shipping type of the order. N: General delivery for a single order (Normal) |
shipping_ | Shipping company id ID of shipping company. |
shipping_ | Shipping company name Name of shipping company. |
shipping_ | shipping carrier code |
product_ | Product bundle T: Set product |
product_ | Set product number Number of Separable bundle product. |
product_ | Set product name Name of separable bundle product. |
product_ | Set product name (default) Name of separable bundle product. (default) |
product_ | Product bundle type Type of bundle product. C: Integrated type |
was_ | Was product bundled Whether bundle product has been separated or not. T: Has been separated |
original_ | Original bundle item no Original item number of separated buldle product. |
naver_ | Naver pay order ID Order ID of order from 'Naver pay'. |
naver_ | Naver pay claim status Claim type of order from 'Naver pay'. PAYMENT_WAITING: Deposit on standby |
individual_ | Individual shipping fee Individual shipping fee of order. |
shipping_ | Shipping charge (When using 'Shipping charge individually') Type of shipping charge. T: Free |
shipping_ | Shipping fee type Description of shipping fee type. |
shipping_ | digital wallet balance/Pay after delivery C: Pay after delivery |
payment_ | Payment information ID |
original_ | Original item no |
store_ | Store pickup Whether the order can pickup at an offline store or not. T: Store pickup |
ordered_ timezone | Ordered date |
shipped_ timezone | Shipped date Date of shipping started. |
delivered_ timezone | Delivered date Delivered date of order. |
cancel_ timezone | Order cancellation date Date of order canceled. |
return_ timezone | Return approval time |
return_ timezone | Return request date Date of return requested. |
return_ timezone | return pickup date |
cancel_ timezone | Cancellation request date Date of request order cancel. |
refund_ timezone | Refund date Date of refund completed. |
exchange_ timezone | Exchange request date Date of request exchange. |
exchange_ timezone | Exchange date Date of exchange completed. |
product_ | Material of product The material of the item. You should enter each material and percentage of composing material if the product is has a multiple material. |
product_ | English product material Description of product material in English. |
cloth_ | Fabric of product In case cloth products using a Japanese courier service, material information may required for some shipping companies. |
product_ | Weight of product Weight of whole product. Total weight including product, box, and packing weight is necessary for shipping. |
volume_ | Product volume Volume size of a product. |
volume_ | Volume size weight volumetric weight of a product. |
clearance_ | Clearance category code Category code for the purpose of customs clearance. |
clearance_ | Clearance category information |
clearance_ | Clearance category code Category code for the purpose of customs clearance. |
hs_ | HS code HS code for customs clerance. |
one_ | One plus n event Whether 1 plus N event or not. |
origin_ | Origin Search for products that include keyword in the origin place. (Case Insensitive) |
origin_ | Code of origin |
made_ | Origin country code |
gift | Gift Whether product is for gift or not. T: gift |
item_ | Items that need to be purchased to offer gifts |
subscription | subscription billing in use T: subscription billing in use |
product_ | List of set items |
market_ | marketplace order cancellation T: marketplace order with cancellation request submitted |
market_ | number of cancellation requested marketplace order |
market_ | reason for marketplace order failure |
market_ | detailed reason for marketplace order failure |
market_ | online marketplace custom variant code |
order_ | Order ID |
claim_ | cancellation/exchange/return type |
claim_ | cancellation/exchange/return request status |
List all orders items
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
order_ Required Order ID | Order ID |
Update an orders item
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
order_ Required | Order item code |
claim_ Required | cancellation/exchange/return type C: cancel |
claim_ Required | cancellation/exchange/return request status T : submit request |
claim_ Required | type of cancellation/exchange/return request reason A: change of mind |
claim_ | reason for cancellation/exchange/return request |
claim_ | number of cancellation/exchange/return requests |
Orders memos
Orders memos properties
Attribute | Description |
---|---|
shop_ | Shop Number |
memo_ | Memo number |
created_ timezone | memo added date |
author_ | Author ID |
ip | author IP address |
use_ | added to customer inquiries T: Used |
attach_ | attached to O : order number |
content | Memo description |
starred_ | Important memo T: Important memo |
fixed | pinned to top T: Used |
product_ | Product list |
topic_ | inquiry type cs_01 : shipping |
status | response status F : in progress |
List all orders memos
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID |
Create an orders memo
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID |
content Required Max Length : [1000] | Memo description |
use_ | added to customer inquiries T: Used DEFAULT F |
topic_ | inquiry type cs_01 : shipping |
status | response status F : in progress |
attach_ | attached to O : order number DEFAULT O |
starred_ | Important memo T: Important memo DEFAULT F |
fixed | pinned to top T: Used DEFAULT F |
product_ | Product list |
Update an orders memo
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID |
memo_ Required | Memo number |
content Max Length : [1000] | Memo description |
use_ | added to customer inquiries T: Used DEFAULT F |
topic_ | inquiry type cs_01 : shipping |
status | response status F : in progress |
attach_ | attached to O : order number DEFAULT O |
starred_ | Important memo T: Important memo DEFAULT F |
fixed | pinned to top T: Used DEFAULT F |
product_ | Product list |
Delete an orders memo
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID |
memo_ Required | Memo number |
Orders payments
Orders payments properties
Attribute | Description |
---|---|
shop_ | Shop Number |
order_ | Order ID |
change_ | change in payment amount T: Use |
change_ | change in payment method T: Use |
payment_ | Payment Method |
payment_ | error message displayed for PG transaction cancellations |
admin_ | manually input amount |
commission | Transaction fee |
initial_ | initial estimated payment amount |
change_ | reason for change in payment amount |
Update an orders payment
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
change_ Required | change in payment amount T: Use |
change_ Required | change in payment method T: Use |
payment_ | Payment Method cash: Bank transfer |
billing_ Max Length : [40] | Depositor name Available when "change_payment_method" is set as "T", and the payment method is changed to bank deposit. |
bank_ | bank ID (for bank transfer without a bankbook) Available when "change_payment_method" is set as "T", and the payment method is changed to bank deposit. |
admin_ Min : [0] | manually input amount Available when "change_payment_amount" is set as "T". |
commission Min : [0] | Transaction fee Available when "change_payment_amount" is set as "T", and the payment method is changed to Daibiki. |
change_ Max Length : [255] | reason for change in payment amount Available when "change_payment_amount" is set as "T". |
Orders paymenttimeline
Orders paymenttimeline properties
Attribute | Description |
---|---|
shop_ | Shop Number |
payment_ | Payment number |
payment_ | payment type O: initial payment |
order_ | Order Amount |
additional_ | alternative payment amount |
paid_ | amount paid |
payment_ | Payment Method |
payment_ timezone | Payment date |
created_ timezone | input date |
payment_ | payment amounts by payment method It can be displayed only in detail inquiry. |
order_ | price and fee details It can be displayed only in detail inquiry. |
List all orders paymenttimeline
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
order_ Required | Order ID |
Get an orders paymenttimeline
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
order_ Required | Order ID |
payment_ Required Min : [1] | Payment number |
Orders receivers
Receivers are the names, contacts, and address information of the recipients to whom the ordered goods will be shipped.
Recipient can only be used in the Order subset as a embedded Resource.
Orders receivers properties
Attribute | Description |
---|---|
shop_ Min : [1] | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
name | Receiver name Name of recipient. May differ from orderer name or billing name. |
name_ | Receiver name (Pronunciation) Name of recipient in Japanese Furigana. |
phone | Office phone number |
cellphone | Receiver mobile phone number |
virtual_ | Receiver virtual number |
zipcode | Zipcode |
address1 | Address 1 |
address2 | Address 2 |
address_ | state |
address_ | City / Town |
address_ | street |
address_ | Full address |
name_ | Receiver name (English) |
city_ | Receiver city (English) |
state_ | Receiver state (English) |
street_ | Receiver address (English) |
country_ | Country code |
country_ | Country |
country_ | Country (English) |
shipping_ | Shipping message |
clearance_ | customs clearance information I: ID |
clearance_ | customs clearance information |
wished_ | Desired delivery date |
wished_ | Desired delivery time |
shipping_ | Shipping code |
change_ | Change default shipping address T: Yes |
List all orders receivers
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number A unique number assigned to a store using the default store language or other languages DEFAULT 1 |
order_ Required Order ID | Order ID |
shipping_ | Shipping code You can search multiple item with ,(comma) |
Update orders receivers
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 100 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID |
name Max Length : [20] | Receiver name |
phone Max Length : [20] | Receiver phone number |
cellphone Max Length : [20] | Receiver mobile phone number |
shipping_ | Shipping message |
name_ | Receiver name (Pronunciation) |
zipcode Min Length : [2] | Zipcode |
address1 Max Length : [255] | Address 1 |
address2 Max Length : [255] | Address 2 |
address_ | state |
address_ | City / Town |
name_ | Receiver name (English) |
city_ | Receiver city (English) |
state_ | Receiver state (English) |
street_ | Receiver address (English) |
country_ | Country code |
clearance_ | customs clearance information I: ID |
clearance_ | customs clearance information |
shipping_ | Shipping code |
change_ | Change default shipping address T: Yes DEFAULT F |
virtual_ | Receiver virtual number |
Update an orders receiver
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID |
shipping_ Required | Shipping code |
name Max Length : [20] | Receiver name |
phone Max Length : [20] | Receiver phone number |
cellphone Max Length : [20] | Receiver mobile phone number |
shipping_ | Shipping message |
name_ | Receiver name (Pronunciation) |
zipcode Min Length : [2] | Zipcode |
address1 Max Length : [255] | Address 1 |
address2 Max Length : [255] | Address 2 |
address_ | state |
address_ | City / Town |
name_ | Receiver name (English) |
city_ | Receiver city (English) |
state_ | Receiver state (English) |
street_ | Receiver address (English) |
country_ | Country code |
clearance_ | customs clearance information I: ID |
clearance_ | customs clearance information |
change_ | Change default shipping address T: Yes DEFAULT F |
virtual_ | Receiver virtual number |
Orders receivers history
Orders receivers history properties
Attribute | Description |
---|---|
shop_ Min : [1] | Shop Number |
name | Receiver name |
phone | Office phone number |
cellphone | Receiver mobile phone number |
zipcode | Zipcode |
address1 | Address 1 |
address2 | Address 2 |
address_ | state |
address_ | City / Town |
address_ | street |
address_ | Full address |
name_ | Receiver name (English) |
city_ | Receiver city (English) |
state_ | Receiver state (English) |
street_ | Receiver address (English) |
country_ | Country code |
country_ | Country |
country_ | Country (English) |
shipping_ | Shipping message |
updated_ timezone | Updated date |
user_ | ID of the persons modified the orderer |
user_ | name of the persons modified the order |
shipping_ | Shipping code |
List all orders receivers history
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID |
Orders return
Orders return properties
Attribute | Description |
---|---|
shop_ | Shop Number |
order_ | Order ID |
status | Order status canceled : canceled |
claim_ | cancellation number |
items | Order item code |
Create an orders return
POST
This API allows you to process returns for a specific order. When returns are processed by using this API, orders will be marked as returned and payments will be canceled via payment gateways. (When "T" is used for "payment_gateway_cancel")
For partial cancellations, refund amount for each order will be automatically calculated and processed.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
payment_ | PG cancellation request settings Cancellations cannot be processed via payment gateways when multiple payment methods have been used. Cancellations must be processed through Cafe24 admin system. T : cancel DEFAULT F |
status Required | Order status returned: returned |
recover_ | Inventory Recovery T : Recover DEFAULT F |
recover_ | restore a coupon T : Recover DEFAULT F |
add_ | add to admin memo T: Enable DEFAULT F |
reason Max Length : [2000] | refund reason |
claim_ | type of refund reason A: change of mind |
naverpay_ | reason for NAVER Pay order cancellation This cannot be used on Cafe24 Vietnam, Philippines, Japan. 51 : change of mind |
refund_ | Refund method T : cash |
combined_ | Mixed refund methods When credit card, bank transfer or mobile payment is selected as refund method (refund_method_code), another payment method that will be used to receive refunds for an order paid with multiple payment methods can be selected. (Only "F" can be used for "payment_gateway".) T : cash |
refund_ | code assigned to bank for refunds Required when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [250] | Bank name Required when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [50] | Refund account number Required when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [15] | Refund Account Account Holder's Name |
items | Order item code |
order_item_code quantity |
Orders shipments
This resource is about shipping information required for fulfillment. This resource contains information such as invoice number, carrier, shipping status, etc.
Orders shipments properties
Attribute | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
shipping_ | Shipping code |
order_ | Order ID |
tracking_ | Tracking number |
tracking_ timezone | Input date (Tracking number) |
shipping_ | shipping carrier code |
items | list of items |
status | Order status standby : waiting for shipping |
order_ | Order item code |
status_ | Order status additional info |
List all orders shipments
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
order_ Required Order ID | Order ID |
Register shipments information
POST
You can flag orders to indicate the shipping status such as Awaiting shipment or In-transit.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
tracking_ Required Max Length : [30] | Tracking number |
shipping_ Required | shipping carrier code |
order_ | Order item code |
status Required | Order status standby : waiting for shipping |
shipping_ | Shipping code |
Update orders shipment information
PUT
You can update shipping information (shipping status, etc.).
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
shipping_ Required | Shipping code |
status | Order status "tracking_no" and "shipping_company_code" cannot be used when "status" is used to change the shipping status. standby : waiting for shipping |
status_ Max Length : [30] | Order status additional info |
tracking_ Max Length : [30] | Tracking number "shipping_company_code" must be used with "tracking_no", and "status" cannot be used to change the shipping status. |
shipping_ | shipping carrier code shipping_company_code |
Delete an orders shipment
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
order_ Required | Order ID |
shipping_ Required | Shipping code |
Orders shippingfeecancellation
Orders shippingfeecancellation properties
Attribute | Description |
---|---|
shop_ | Shop Number |
order_ | Order ID |
default_ | default shipping fee |
supplier_ | Default shipping fee (store) |
individual_ | Individual shipping fee |
international_ | 해외배송비 |
international_ | International shipping insurance |
additional_ | Additional shipping fee |
additional_ | Additional handling fee |
regional_ | regional shipping rates |
claim_ | cancellation number |
claim_ | division A: change of mind |
claim_ | Reason |
refund_ | Refund method |
shipping_ | Shipping discount cancellation amount |
coupon_ | Coupon discount cancellation amount |
refund_ | refund amount |
point_ | Reimbursement Return Used |
credit_ | Deposit Refund Used |
mixed_ | mixed refund amount |
mixed_ | Mixed refund methods |
status | Order status LIBSPECDATACANCELING.PROCESSING |
List all orders shippingfeecancellation
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
order_ Required | Order ID |
Create an orders shippingfeecancellation
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
order_ Required | Order ID |
reason Max Length : [2000] | reason for cancellation |
claim_ | type of reason for cancellation A: change of mind |
recover_ | restore a coupon T : Recover DEFAULT F |
refund_ | Refund method T : cash |
combined_ | Mixed refund methods T : cash |
refund_ | code assigned to bank for refunds |
refund_ Max Length : [250] | Bank name |
refund_ Max Length : [50] | Refund account number |
refund_ Max Length : [15] | Refund Account Account Holder's Name |
payment_ | PG cancellation request settings T : cancel DEFAULT F |
Orders shortagecancellation
Orders shortagecancellation properties
Attribute | Description |
---|---|
shop_ Min : [1] | Shop Number |
order_ | Order ID |
status | Order status canceled : canceled |
claim_ | cancellation number |
items | Order item code |
Create an orders shortagecancellation
POST
Access to this API is limited to certain clients only. Please contact Cafe24 Developers to access it.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number |
order_ Required | Order ID |
payment_ | PG cancellation request settings T : cancel DEFAULT F |
keep_ | keep the automatic discount calculation flag yes: T DEFAULT F |
collect_ | automatically recapture gift T: Enable DEFAULT F |
status Required | Order status canceled : canceled |
recover_ | Inventory Recovery T : Recover DEFAULT F |
recover_ | restore a coupon T : Recover DEFAULT F |
add_ | add to admin memo T: Enable DEFAULT F |
reason Max Length : [2000] | reason for cancellation |
claim_ | type of reason for cancellation A: change of mind |
naverpay_ | reason for NAVER Pay order cancellation This cannot be used on Cafe24 Vietnam, Philippines. 51 : change of mind |
refund_ | Refund method T : cash |
combined_ | Mixed refund methods T : cash |
refund_ | code assigned to bank for refunds |
refund_ Max Length : [250] | Bank name |
refund_ Max Length : [50] | Refund account number |
refund_ Max Length : [15] | Refund Account Account Holder's Name |
items | Order item code |
order_item_code quantity |
Payments
Endpoints
Payments properties
Attribute | Description |
---|---|
shop_ | Shop Number |
order_ | Order ID |
status | Order status paid: payment confirmed |
Update payments
PUT
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 10 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
status Required | Order status paid: payment confirmed |
recover_ | Inventory Recovery T : Recover |
Refunds
Refunds properties
Attribute | Description |
---|---|
shop_ | Shop Number |
member_ | customer email |
buyer_ | Buyer Email |
order_ timezone | Ordered date |
accepted_ timezone | refund requested date |
refund_ timezone | refund completed date |
order_ | Order ID |
refund_ | refund number |
order_ | list of items |
quantity | Available inventory |
actual_ | actual amount refunded |
used_ | Reimbursement Return Used |
used_ | Deposit Refund Used |
used_ | refunded transferable points |
currency | Currency |
payment_ | Payment Method cash : deposit without a bankbook |
refund_ | refunded in cash : deposit without a bankbook |
payment_ | PG cancellation status F : before cancellation |
payment_ timezone | PG canceled date |
status | status of refund T : before refund |
refund_ | refunded points It can be displayed only in detail inquiry. |
refund_ | refunded credits It can be displayed only in detail inquiry. |
refund_ | refunded NAVER points It can be displayed only in detail inquiry. |
refund_ | refunded NAVER cash It can be displayed only in detail inquiry. |
refund_ | refund amount It can be displayed only in detail inquiry. |
product_ | Product price It can be displayed only in detail inquiry. |
shipping_ | shipping fee It can be displayed only in detail inquiry. |
shipping_ | Shipping discount It can be displayed only in detail inquiry. |
cod_ | Postpayment Fee It can be displayed only in detail inquiry. |
foreign_ | additional handling fee for international shipping It can be displayed only in detail inquiry. |
product_ | per-product discount It can be displayed only in detail inquiry. |
member_ | customer level-based discount It can be displayed only in detail inquiry. |
app_ | product discount price for app It can be displayed only in detail inquiry. |
app_ | discount price of order for app It can be displayed only in detail inquiry. |
coupon_ | coupon discount It can be displayed only in detail inquiry. |
product_ | bundle discount It can be displayed only in detail inquiry. |
points_ | amount of points used It can be displayed only in detail inquiry. |
credits_ | amount of credits used It can be displayed only in detail inquiry. |
transferable_ | amount of transferable points used It can be displayed only in detail inquiry. |
naver_ | NAVER points It can be displayed only in detail inquiry. |
naver_ | NAVER cash It can be displayed only in detail inquiry. |
additional_ | price for additional product It can be displayed only in detail inquiry. |
manually_ | manually input amount It can be displayed only in detail inquiry. |
changed_ | change in refund amount It can be displayed only in detail inquiry. |
refund_ | Bank name It can be displayed only in detail inquiry. |
refund_ | Refund account number It can be displayed only in detail inquiry. |
refund_ | Refund Account Account Holder's Name It can be displayed only in detail inquiry. |
refund_ | refunded by It can be displayed only in detail inquiry. |
refund_ | refund reason It can be displayed only in detail inquiry. |
refund_ | refund method It can be displayed only in detail inquiry. |
send_ | whether send SMS after processing refund It can be displayed only in detail inquiry. T : send |
send_ | whether send mail after processing refund It can be displayed only in detail inquiry. T : send |
items | Item Resource
It can be displayed only in detail inquiry. |
List all refunds
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
start_ Required Date | Search Start Date |
end_ Required Date | Search End Date |
date_ | Date type accepted_refund_date : refund requested date DEFAULT refund_date |
member_ | customer email |
buyer_ | Buyer Email |
limit Min : [1]~Max : [500] | Limit DEFAULT 10 |
offset Max : [8000] | Start location of list |
Get a refund
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
refund_ Required | refund number |
items embed | Item Resource |
Return
Return refers to a process of returning the order after the product has been delivered to the customer. "Return" resource allows you to retrieve details on returns or process returns. With "Return" resource, you can retrieve order status from after a return request has been submitted to after an order has been returned.
Return properties
Attribute | Description |
---|---|
shop_ | Shop Number |
order_ | Order ID |
claim_ | cancellation number |
claim_ | division Type of reason for accepting the customer's return request It can be displayed only in detail inquiry. A: change of mind |
claim_ | Reason Detailed reason for accepting the customer's return request. It can be displayed only in detail inquiry. |
claim_ | Due date for return It can be displayed only in detail inquiry. |
return_ | Return address It can be displayed only in detail inquiry. |
pickup | Pickup - Address It can be displayed only in detail inquiry. |
return_ | return tracking number It can be displayed only in detail inquiry. |
return_ | return shipping carrier It can be displayed only in detail inquiry. |
pickup_ | pickup request status It can be displayed only in detail inquiry. E: pickup not requested |
refund_ | Refund method It can be displayed only in detail inquiry. |
refund_ | Remarks It can be displayed only in detail inquiry. |
order_ | Purchase amount It can be displayed only in detail inquiry. |
refund_ | refund amount It can be displayed only in detail inquiry. |
shipping_ | shipping fee It can be displayed only in detail inquiry. |
return_ | Return shipping cost classification It can be displayed only in detail inquiry. |
return_ | return shipping fee It can be displayed only in detail inquiry. |
return_ | return shipping fee details It can be displayed only in detail inquiry. |
return_ | return shipping fee by region It can be displayed only in detail inquiry. |
return_ | return shipping fee by region details It can be displayed only in detail inquiry. |
defer_ | Postpayment Fee It can be displayed only in detail inquiry. |
partner_ | Affiliate discount cancellation amount It can be displayed only in detail inquiry. |
add_ | Extra discount discount by product It can be displayed only in detail inquiry. |
member_ | Membership Discount Discount Amount It can be displayed only in detail inquiry. |
shipping_ | Shipping discount cancellation amount It can be displayed only in detail inquiry. |
coupon_ | Coupon discount cancellation amount It can be displayed only in detail inquiry. |
point_ | Reimbursement Return Used It can be displayed only in detail inquiry. |
credit_ | Deposit Refund Used It can be displayed only in detail inquiry. |
items | Order item code |
status | Order status canceled : canceled |
Get a return
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_order |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
claim_ Required | Return number |
Create return
POST
This API allows you to process returns for multiple orders. When returns are processed by using this API, orders will be marked as returned, but you need to cancel payments via payment gateways.
For partial returns, refund amount for each order will be automatically calculated and processed.
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 100 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
status Required | Order status returned: returned |
recover_ | Inventory Recovery T : Recover DEFAULT F |
recover_ | restore a coupon T : Recover DEFAULT F |
add_ | add to admin memo T: Enable DEFAULT F |
reason Max Length : [2000] | refund reason |
claim_ | type of refund reason A: change of mind |
naverpay_ | reason for NAVER Pay order cancellation This cannot be used on Cafe24 Vietnam, Philippines, Japan. 51 : change of mind |
refund_ | Refund method T : cash |
combined_ | Mixed refund methods When credit card, bank transfer or mobile payment is selected as refund method (refund_method_code), another payment method that will be used to receive refunds for an order paid with multiple payment methods can be selected. T : cash |
refund_ | code assigned to bank for refunds Required when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [250] | Bank name Required when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [50] | Refund account number Available only when refund method (refund_method) is set as cash (T) |
refund_ Max Length : [15] | Refund Account Account Holder's Name |
items | Order item code |
order_item_code quantity |
Shipments
This resource, unlike the Order resource's child Shipments resource, lets you create or update multiple orders’ shipping information in one call. This resource contains information about invoice number, courier, shipping status, etc.
Shipments properties
Attribute | Description |
---|---|
shop_ | Shop Number |
order_ | Order ID |
tracking_ | Tracking number |
shipping_ | Shipping code |
shipping_ | shipping carrier code |
status | Order status standby : waiting for shipping |
order_ | Order item code |
status_ | Order status additional info |
Create shipments
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 100 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
order_ Required | Order ID |
tracking_ Required Max Length : [30] | Tracking number |
shipping_ Required | shipping carrier code |
status Required | Order status standby : waiting for shipping |
order_ | Order item code |
shipping_ | Shipping code |
Update shipments
PUT
You can update shipping information (shipping status, etc.).
Specification
Property | Description |
---|---|
SCOPE | mall.write_order |
Request Limit | 40 |
objects per single API call Limit | 100 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
status | Order status "tracking_no" and "shipping_company_code" cannot be used when "status" is used to change the shipping status. standby : waiting for shipping |
status_ Max Length : [30] | Order status additional info |
order_ Required | Order ID |
shipping_ Required | Shipping code |
tracking_ Max Length : [30] | Tracking number "shipping_company_code" must be used with "tracking_no", and "status" cannot be used to change the shipping status. |
shipping_ | shipping carrier code Both shipping carrier and tracking number of the order can be changed. |
Community
Boards
Endpoints
Boards properties
Attribute | Description |
---|---|
shop_ | Shop Number |
board_ | board number |
board_ | board category 1: administration |
board_ | board name |
use_ | whether to add more boards T: additional board |
use_ | whether to use board T: Use |
use_ | whether to display T: Displayed |
display_ | Order by |
List all boards
GET
This API can only be used in stores using Korean or Japanese.
Specification
Property | Description |
---|---|
SCOPE | mall.read_community |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
Boards articles
Boards articles refers to data on posts posted on [Boards].
Boards articles properties
Attribute | Description |
---|---|
shop_ | Shop Number |
article_ | posts number |
parent_ | posts number of parent posts |
board_ Required | board number |
product_ | Product number |
category_ | category number |
board_ | category number of a board |
reply_ | order of replied posts |
reply_ | answer depth |
created_ Date | date of create |
writer | writer |
writer_ | email of writer |
member_ | Member id |
title | subject |
content | content |
client_ IP | IP address of a writer |
nick_ | nickname |
rating Min : [1]~Max : [5] | review score |
sales_ Max Length : [20] | sales channel |
reply_ | whether replied by mail for 1:1 query Y : used |
display | post publishing settings T: publish |
secret | whether secret posts T: Use |
notice | whether notice T: Use |
fixed | whether fixed T: Use |
deleted | whether deleted T : deleted |
input_ | posting path P : PC |
order_ | Order ID |
attach_ | attached file detail |
hit | views |
reply | whether replied for 1:1 query T: Use |
reply_ | manager ID of which processing or completed answer |
reply_ | status of replay N : before answer |
naverpay_ | review ID of Naver Pay |
display_ | Exposure time settings |
display_ | Exposure start time |
display_ | Exposure end time |
attached_ | attached file detail |
attached_ | attached file detail |
List all boards articles
GET
This API can only be used in stores using Korean or Japanese.
Specification
Property | Description |
---|---|
SCOPE | mall.read_community |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
board_ Required | board number |
board_ | category number of a board |
start_ Date | Creation start date |
end_ Date | Creation end date |
input_ | Types of online stores P: PC |
search | Search scope subject: title |
keyword | Keyword |
reply_ | Answered N: Unanswered |
comment | Comments T: Yes |
attached_ | Attachment T: Yes |
article_ | type of post You can search multiple item with ,(comma) all: all |
product_ | Product number |
has_ | include product information T: Yes |
limit Min : [1]~Max : [100] | Limit DEFAULT 10 |
offset Max : [8000] | Start location of list |
Create boards articles
POST
This API can only be used in stores using Korean or Japanese.
Specification
Property | Description |
---|---|
SCOPE | mall.write_community |
Request Limit | 40 |
objects per single API call Limit | 10 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
board_ Required | board number |
writer Required Max Length : [100] | writer |
title Required Max Length : [256] | subject |
content Required | content |
client_ Required IP | IP address of a writer |
reply_ | replied post number |
created_ Date | date of create |
writer_ | email of writer |
member_ Max Length : [20] | Member id |
notice | whether notice T: Use DEFAULT F |
fixed | whether fixed T: Use DEFAULT F |
deleted | whether deleted T : deleted DEFAULT F |
reply | whether replied for 1:1 query T: Use DEFAULT F |
rating Min : [1]~Max : [5] | review score |
sales_ Max Length : [20] | sales channel |
secret | whether secret posts T: Use DEFAULT F |
password | password of posts |
reply_ | whether replied by mail for 1:1 query Y : used DEFAULT N |
board_ | category number of a board |
nick_ Max Length : [50] | nickname |
input_ | posting path P : PC DEFAULT P |
reply_ | manager ID of which processing or completed answer |
reply_ | status of replay N : before answer |
product_ | Product number |
category_ | category number |
order_ Order ID | Order ID |
naverpay_ | review ID of Naver Pay |
attach_ | attached file detail |
name url |
Update a boards article
PUT
This API can only be used in stores using Korean or Japanese.
Specification
Property | Description |
---|---|
SCOPE | mall.write_community |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
board_ Required | board number |
article_ Required | posts number |
title Max Length : [256] | subject |
content | content |
rating Min : [1]~Max : [5] | review score |
sales_ Max Length : [20] | sales channel |
board_ | category number of a board |
display | post publishing settings T: publish |
notice | whether notice T: Use |
fixed | whether fixed T: Use |
display_ | Exposure start time |
display_ | Exposure end time |
attach_ URL | url of file |
attach_ URL | url of file |
attach_ URL | url of file |
attach_ URL | url of file |
attach_ URL | url of file |
Delete a boards article
DELETE
This API can only be used in stores using Korean or Japanese.
Specification
Property | Description |
---|---|
SCOPE | mall.write_community |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
board_ Required | board number |
article_ Required | posts number |
Boards articles comments
Boards articles comments properties
Attribute | Description |
---|---|
shop_ | Shop Number |
board_ | board number |
article_ | posts number |
comment_ | Comment number |
content | comment content |
writer Max Length : [100] | writer |
member_ Max Length : [20] | Member id |
created_ Date | date of create |
client_ IP | IP address of a writer |
rating Min : [1]~Max : [5] | comment rating |
secret | whether secret posts T: Use |
parent_ | parent comment number |
input_ | Types of online stores P: PC |
List all boards articles comments
GET
Specification
Property | Description |
---|---|
SCOPE | mall.read_community |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ Min : [1] | Shop Number DEFAULT 1 |
board_ Required | board number |
article_ Required | posts number |
comment_ | Comment number |
limit Min : [1]~Max : [100] | Limit DEFAULT 10 |
offset Max : [8000] | Start location of list |
Create a boards articles comment
POST
Specification
Property | Description |
---|---|
SCOPE | mall.write_community |
Request Limit | 40 |
objects per single API call Limit | 1 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
board_ Required | board number |
article_ Required | posts number |
content Required | comment content |
writer Required Max Length : [100] | writer |
password Required Length Min : [1]~Max : [20] | comment password |
member_ ID | Member id |
rating Min : [1]~Max : [5] | comment rating |
secret | whether secret posts T: Use DEFAULT F |
parent_ Min : [1] | parent comment number |
input_ | Types of online stores P: PC DEFAULT P |
created_ Date | date of create |
Delete a boards articles comment
DELETE
Specification
Property | Description |
---|---|
SCOPE | mall.write_community |
Request Limit | 40 |
Request
Parameter | Description |
---|---|
shop_ | Shop Number DEFAULT 1 |
board_ Required | board number |
article_ Required | posts number |
comment_ Required | Comment number |
Definition Copy