coupang
GET/v2/providers/seller_api/apis/api/v1/marketplace/seller-products/inflow-status2609170000

Query a status of product registration

# 01

Summary

Query a status of product registration

# 02

Details

Available buyer market: Korea,Taiwan

Inquires the number of products that the seller can register and the number of products currently registered.
If the maximum number of products that can be created (permittedCount) is null, you can register products without any restrictions.

Path

GET/v2/providers/seller_api/apis/api/v1/marketplace/seller-products/inflow-status

Example endpoint

https://api-gateway.coupang.com/v2/providers/seller_api/apis/api/v1/marketplace/seller-products/inflow-status

URL API Name

GET_INFLOW_STATUS
# 03

Response body

Response message

NameTypeDescription
codestring
Result code
SUCCESS/ERROR
messagestring
Result message
dataobject
List of products
vendorId
data.vendorId
string
Seller ID
Unique code issued to Vendor by Coupang
restricted
data.restricted
boolean
Whether to limit product creation or not
true or false
registeredCount
data.registeredCount
integer
Number of registered products (excluding deleted products)
permittedCount
data.permittedCount
integer
Maximum number of products that can be created
No limit when displayed as null

Response Example

{
  "code": "SUCCESS",
  "message": "",
  "data": {
    "vendorId": "A00123456",
    "restricted": false,
    "registeredCount": 8125,
    "permittedCount": 10000
  }
}
# 04

Error codes

HTTPCodeMessage
--