Merchants can use the Catalog Products API to create products, which are goods and services.
Creates a product.
A successful request returns the HTTP 201 Created
status code and a JSON response body that shows product details.
{- "name": "Video Streaming Service",
- "type": "SERVICE",
- "description": "Video streaming service",
- "category": "SOFTWARE",
}
{- "id": "PROD-XYAB12ABSB7868434",
- "name": "Video Streaming Service",
- "description": "Video streaming service",
- "type": "SERVICE",
- "category": "SOFTWARE",
- "create_time": "2019-01-10T21:20:49Z",
- "update_time": "2019-01-10T21:20:49Z",
- "links": [
- {
- "rel": "self",
- "method": "GET"
}, - {
- "rel": "edit",
- "method": "PATCH"
}
]
}
Lists products.
page_size | integer [ 1 .. 20 ] Default: 10 The number of items to return in the response. |
page | integer [ 1 .. 100000 ] Default: 1 A non-zero integer which is the start index of the entire list of items that are returned in the response. So, the combination of |
total_required | boolean Default: false Indicates whether to show the total items and total pages in the response. |
Authorization required | string To make REST API calls, include the bearer token in the |
Content-Type required | string The media type. Required for operations with a request body. The value is |
A successful request returns the HTTP 200 OK
status code and a JSON response body that lists products with details.
curl -v -X GET https://api-m.sandbox.paypal.com/v1/catalogs/products?page_size=2&page=1&total_required=true \ -H 'Authorization: Bearer access_token6V7rbVwmlM1gFZKW_8QtzWXqpcwQ6T5vhEGYNJDAAdn3paCgRpdeMdVYmWzgbKSsECednupJ3Zx5Xd-g' \ -H 'Content-Type: application/json' \ -H 'Accept: application/json'
{- "total_items": 20,
- "total_pages": 10,
- "products": [
- {
- "id": "72255d4849af8ed6e0df1173",
- "name": "Video Streaming Service",
- "description": "Video streaming service",
- "create_time": "2018-12-10T21:20:49Z",
- "links": [
- {
- "rel": "self",
- "method": "GET"
}
]
}, - {
- "id": "PROD-XYAB12ABSB7868434",
- "name": "Video Streaming Service",
- "description": "Audio streaming service",
- "create_time": "2018-12-10T21:20:49Z",
- "links": [
- {
- "rel": "self",
- "method": "GET"
}
]
}
], - "links": [
- {
- "rel": "self",
- "method": "GET"
}, - {
- "rel": "next",
- "method": "GET"
}, - {
- "rel": "last",
- "method": "GET"
}
]
}
Shows details for a product, by ID.
Authorization required | string To make REST API calls, include the bearer token in the |
Content-Type required | string The media type. Required for operations with a request body. The value is |
A successful request returns the HTTP 200 OK
status code and a JSON response body that shows product details.
curl -v -X GET https://api-m.sandbox.paypal.com/v1/catalogs/products/72255d4849af8ed6e0df1173 \ -H 'Authorization: Bearer access_token6V7rbVwmlM1gFZKW_8QtzWXqpcwQ6T5vhEGYNJDAAdn3paCgRpdeMdVYmWzgbKSsECednupJ3Zx5Xd-g' \ -H 'Content-Type: application/json' \ -H 'Accept: application/json' \ -H 'Prefer: return=representation'
{- "id": "72255d4849af8ed6e0df1173",
- "name": "Video Streaming Service",
- "description": "Video streaming service",
- "type": "SERVICE",
- "category": "SOFTWARE",
- "create_time": "2018-12-10T21:20:49Z",
- "update_time": "2018-12-10T21:20:49Z",
- "links": [
- {
- "rel": "self",
- "method": "GET"
}, - {
- "rel": "edit",
- "method": "PATCH"
}
]
}
Updates a product, by ID. You can patch these attributes and objects:
Attribute or object | Operations |
---|---|
description | add, replace, remove |
category | add, replace, remove |
image_url | add, replace, remove |
home_url | add, replace, remove |
Authorization required | string To make REST API calls, include the bearer token in the |
Content-Type required | string The media type. Required for operations with a request body. The value is |
op required | string The operation.
| ||||||||||||||||||||||||||
path | string The JSON Pointer to the target document location at which to complete the operation. | ||||||||||||||||||||||||||
value | object (Patch Value) The value to apply. The | ||||||||||||||||||||||||||
from | string The JSON Pointer to the target document location from which to move the value. Required for the |
A successful request returns the HTTP 204 No Content
status code with no JSON response body.
[- {
- "op": "replace",
- "path": "/description",
- "value": "Premium video streaming service"
}
]
The date and time, in Internet date and time format. Seconds are required while fractional seconds are optional.
Note: The regular expression provides guidance but does not reject all invalid dates.
The date and time, in Internet date and time format. Seconds are required while fractional seconds are optional.
Note: The regular expression provides guidance but does not reject all invalid dates.
"stringstringstringst"
The error details.
name required | string The human-readable, unique name of the error. |
message required | string The message that describes the error. |
debug_id required | string The PayPal internal ID. Used for correlation purposes. |
information_link | string The information link, or URI, that shows detailed information about this error for the developer. |
Array of objects (Error Details) An array of additional details about the error. | |
Array of objects (Link Description) An array of request-related HATEOAS links. |
{- "name": "string",
- "message": "string",
- "debug_id": "string",
- "information_link": "string",
- "details": [
- {
- "field": "string",
- "value": "string",
- "location": "body",
- "issue": "string",
- "description": "string"
}
], - "links": [
- {
- "href": "string",
- "rel": "string",
- "method": "GET"
}
]
}
The error details. Required for client-side 4XX
errors.
field | string The field that caused the error. If this field is in the body, set this value to the field's JSON pointer value. Required for client-side errors. |
value | string The value of the field that caused the error. |
location | string Default: "body" The location of the field that caused the error. Value is |
issue required | string The unique, fine-grained application-level error code. |
description | string The human-readable description for an issue. The description can change over the lifetime of an API, so clients must not depend on this value. |
{- "field": "string",
- "value": "string",
- "location": "body",
- "issue": "string",
- "description": "string"
}
The request-related HATEOAS link information.
href required | string The complete target URL. To make the related call, combine the method with this URI Template-formatted link. For pre-processing, include the |
rel required | string The link relation type, which serves as an ID for a link that unambiguously describes the semantics of the link. See Link Relations. |
method | string The HTTP method required to make the related call. |
{- "href": "string",
- "rel": "string",
- "method": "GET"
}
The JSON patch object to apply partial updates to resources.
op required | string The operation.
| ||||||||||||||||||||||||||
path | string The JSON Pointer to the target document location at which to complete the operation. | ||||||||||||||||||||||||||
value | object (Patch Value) The value to apply. The | ||||||||||||||||||||||||||
from | string The JSON Pointer to the target document location from which to move the value. Required for the |
{- "op": "add",
- "path": "string",
- "value": { },
- "from": "string"
}
An array of JSON patch objects to apply partial updates to resources.
op required | string The operation.
| ||||||||||||||||||||||||||
path | string The JSON Pointer to the target document location at which to complete the operation. | ||||||||||||||||||||||||||
value | object (Patch Value) The value to apply. The | ||||||||||||||||||||||||||
from | string The JSON Pointer to the target document location from which to move the value. Required for the |
[- {
- "op": "add",
- "path": "string",
- "value": { },
- "from": "string"
}
]
The product details.
id | string [ 6 .. 50 ] characters The ID of the product. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name | string [ 1 .. 127 ] characters The product name. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
description | string [ 1 .. 256 ] characters The product description. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type | string [ 1 .. 24 ] characters ^[A-Z_]+$ Default: "PHYSICAL" The product type. Indicates whether the product is physical or digital goods, or a service.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
category | string (product_category) [ 4 .. 256 ] characters ^[A-Z_]+$ The product category.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
image_url | string <uri> [ 1 .. 2000 ] characters The image URL for the product. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
home_url | string <uri> [ 1 .. 2000 ] characters The home page URL for the product. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (Link Description) An array of request-related HATEOAS links. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
create_time | string <ppaas_date_time_v3> (date_time) [ 20 .. 64 ] characters ^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|... The date and time when the product was created, in Internet date and time format. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
update_time | string <ppaas_date_time_v3> (date_time) [ 20 .. 64 ] characters ^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|... The date and time when the product was last updated, in Internet date and time format. |
{- "id": "string",
- "name": "string",
- "description": "string",
- "type": "PHYSICAL",
- "category": "AC_REFRIGERATION_REPAIR",
- "links": [
- {
- "href": "string",
- "rel": "string",
- "method": "GET"
}
], - "create_time": "stringstringstringst",
- "update_time": "stringstringstringst"
}
The product category.
The product category.
Enum: | Description |
---|---|
AC_REFRIGERATION_REPAIR | A/C, Refrigeration Repair |
ACADEMIC_SOFTWARE | Academic Software |
ACCESSORIES | Accessories |
ACCOUNTING | Accounting |
ADULT | Adult |
ADVERTISING | Advertising |
AFFILIATED_AUTO_RENTAL | Affiliated Auto Rental |
AGENCIES | Agencies |
AGGREGATORS | Aggregators |
AGRICULTURAL_COOPERATIVE_FOR_MAIL_ORDER | Agricultural Cooperative for Mail Order |
AIR_CARRIERS_AIRLINES | Air Carriers, Airlines |
AIRLINES | Airlines |
AIRPORTS_FLYING_FIELDS | Airports, Flying Fields |
ALCOHOLIC_BEVERAGES | Alcoholic Beverages |
AMUSEMENT_PARKS_CARNIVALS | Amusement Parks/Carnivals |
ANIMATION | Animation |
ANTIQUES | Antiques |
APPLIANCES | Appliances |
AQUARIAMS_SEAQUARIUMS_DOLPHINARIUMS | Aquariams Seaquariums Dolphinariums |
ARCHITECTURAL_ENGINEERING_AND_SURVEYING_SERVICES | Architectural,Engineering,And Surveying Services |
ART_AND_CRAFT_SUPPLIES | Art & Craft Supplies |
ART_DEALERS_AND_GALLERIES | Art dealers and galleries |
ARTIFACTS_GRAVE_RELATED_AND_NATIVE_AMERICAN_CRAFTS | Artifacts, Grave related, and Native American Crafts |
ARTS_AND_CRAFTS | Arts and crafts |
ARTS_CRAFTS_AND_COLLECTIBLES | Arts, crafts, and collectibles |
AUDIO_BOOKS | Audio books |
AUTO_ASSOCIATIONS_CLUBS | Auto Associations/Clubs |
AUTO_DEALER_USED_ONLY | Auto dealer - used only |
AUTO_RENTALS | Auto Rentals |
AUTO_SERVICE | Auto service |
AUTOMATED_FUEL_DISPENSERS | Automated Fuel Dispensers |
AUTOMOBILE_ASSOCIATIONS | Automobile Associations |
AUTOMOTIVE | Automotive |
AUTOMOTIVE_REPAIR_SHOPS_NON_DEALER | Automotive Repair Shops - Non-Dealer |
AUTOMOTIVE_TOP_AND_BODY_SHOPS | Automotive Top And Body Shops |
AVIATION | Aviation |
BABIES_CLOTHING_AND_SUPPLIES | Babies Clothing & Supplies |
BABY | Baby |
BANDS_ORCHESTRAS_ENTERTAINERS | Bands,Orchestras,Entertainers |
BARBIES | Barbies |
BATH_AND_BODY | Bath and body |
BATTERIES | Batteries |
BEAN_BABIES | Bean Babies |
BEAUTY | Beauty |
BEAUTY_AND_FRAGRANCES | Beauty and fragrances |
BED_AND_BATH | Bed & Bath |
BICYCLE_SHOPS_SALES_AND_SERVICE | Bicycle Shops-Sales And Service |
BICYCLES_AND_ACCESSORIES | Bicycles & Accessories |
BILLIARD_POOL_ESTABLISHMENTS | Billiard/Pool Establishments |
BOAT_DEALERS | Boat Dealers |
BOAT_RENTALS_AND_LEASING | Boat Rentals And Leasing |
BOATING_SAILING_AND_ACCESSORIES | Boating, sailing and accessories |
BOOKS | Books |
BOOKS_AND_MAGAZINES | Books and magazines |
BOOKS_MANUSCRIPTS | Books, Manuscripts |
BOOKS_PERIODICALS_AND_NEWSPAPERS | Books, Periodicals And Newspapers |
BOWLING_ALLEYS | Bowling Alleys |
BULLETIN_BOARD | Bulletin board |
BUS_LINE | Bus line |
BUS_LINES_CHARTERS_TOUR_BUSES | Bus Lines,Charters,Tour Buses |
BUSINESS | Business |
BUSINESS_AND_SECRETARIAL_SCHOOLS | Business and secretarial schools |
BUYING_AND_SHOPPING_SERVICES_AND_CLUBS | Buying And Shopping Services And Clubs |
CABLE_SATELLITE_AND_OTHER_PAY_TELEVISION_AND_RADIO_SERVICES | Cable,Satellite,And Other Pay Television And Radio Services |
CABLE_SATELLITE_AND_OTHER_PAY_TV_AND_RADIO | Cable, satellite, and other pay TV and radio |
CAMERA_AND_PHOTOGRAPHIC_SUPPLIES | Camera and photographic supplies |
CAMERAS | Cameras |
CAMERAS_AND_PHOTOGRAPHY | Cameras & Photography |
CAMPER_RECREATIONAL_AND_UTILITY_TRAILER_DEALERS | Camper,Recreational And Utility Trailer Dealers |
CAMPING_AND_OUTDOORS | Camping and outdoors |
CAMPING_AND_SURVIVAL | Camping & Survival |
CAR_AND_TRUCK_DEALERS | Car And Truck Dealers |
CAR_AND_TRUCK_DEALERS_USED_ONLY | Car And Truck Dealers - Used Only |
CAR_AUDIO_AND_ELECTRONICS | Car Audio & Electronics |
CAR_RENTAL_AGENCY | Car rental agency |
CATALOG_MERCHANT | Catalog Merchant |
CATALOG_RETAIL_MERCHANT | Catalog/Retail Merchant |
CATERING_SERVICES | Catering services |
CHARITY | Charity |
CHECK_CASHIER | Check Cashier |
CHILD_CARE_SERVICES | Child Care Services |
CHILDREN_BOOKS | Children Books |
CHIROPODISTS_PODIATRISTS | Chiropodists/Podiatrists |
CHIROPRACTORS | Chiropractors |
CIGAR_STORES_AND_STANDS | Cigar Stores And Stands |
CIVIC_SOCIAL_FRATERNAL_ASSOCIATIONS | Civic, Social, Fraternal Associations |
CIVIL_SOCIAL_FRAT_ASSOCIATIONS | Civil/Social/Frat Associations |
CLOTHING | Clothing |
CLOTHING_ACCESSORIES_AND_SHOES | Clothing, accessories, and shoes |
CLOTHING_RENTAL | Clothing Rental |
COFFEE_AND_TEA | Coffee and tea |
COIN_OPERATED_BANKS_AND_CASINOS | Coin Operated Banks & Casinos |
COLLECTIBLES | Collectibles |
COLLECTION_AGENCY | Collection agency |
COLLEGES_AND_UNIVERSITIES | Colleges and universities |
COMMERCIAL_EQUIPMENT | Commercial Equipment |
COMMERCIAL_FOOTWEAR | Commercial Footwear |
COMMERCIAL_PHOTOGRAPHY | Commercial photography |
COMMERCIAL_PHOTOGRAPHY_ART_AND_GRAPHICS | Commercial photography, art, and graphics |
COMMERCIAL_SPORTS_PROFESSIONA | Commercial Sports/Professiona |
COMMODITIES_AND_FUTURES_EXCHANGE | Commodities and futures exchange |
COMPUTER_AND_DATA_PROCESSING_SERVICES | Computer and data processing services |
COMPUTER_HARDWARE_AND_SOFTWARE | Computer Hardware & Software |
COMPUTER_MAINTENANCE_REPAIR_AND_SERVICES_NOT_ELSEWHERE_CLAS | Computer Maintenance, Repair And Services Not Elsewhere Clas |
CONSTRUCTION | Construction |
CONSTRUCTION_MATERIALS_NOT_ELSEWHERE_CLASSIFIED | Construction Materials Not Elsewhere Classified |
CONSULTING_SERVICES | Consulting services |
CONSUMER_CREDIT_REPORTING_AGENCIES | Consumer Credit Reporting Agencies |
CONVALESCENT_HOMES | Convalescent Homes |
COSMETIC_STORES | Cosmetic Stores |
COUNSELING_SERVICES_DEBT_MARRIAGE_PERSONAL | Counseling Services--Debt,Marriage,Personal |
COUNTERFEIT_CURRENCY_AND_STAMPS | Counterfeit Currency and Stamps |
COUNTERFEIT_ITEMS | Counterfeit Items |
COUNTRY_CLUBS | Country Clubs |
COURIER_SERVICES | Courier services |
COURIER_SERVICES_AIR_AND_GROUND_AND_FREIGHT_FORWARDERS | Courier Services-Air And Ground,And Freight Forwarders |
COURT_COSTS_ALIMNY_CHILD_SUPT | Court Costs/Alimny/Child Supt |
COURT_COSTS_INCLUDING_ALIMONY_AND_CHILD_SUPPORT_COURTS_OF_LAW | Court Costs, Including Alimony and Child Support - Courts of Law |
CREDIT_CARDS | Credit Cards |
CREDIT_UNION | Credit union |
CULTURE_AND_RELIGION | Culture & Religion |
DAIRY_PRODUCTS_STORES | Dairy Products Stores |
DANCE_HALLS_STUDIOS_AND_SCHOOLS | Dance Halls,Studios,And Schools |
DECORATIVE | Decorative |
DENTAL | Dental |
DENTISTS_AND_ORTHODONTISTS | Dentists And Orthodontists |
DEPARTMENT_STORES | Department Stores |
DESKTOP_PCS | Desktop PCs |
DEVICES | Devices |
DIECAST_TOYS_VEHICLES | Diecast, Toys Vehicles |
DIGITAL_GAMES | Digital games |
DIGITAL_MEDIA_BOOKS_MOVIES_MUSIC | Digital media,books,movies,music |
DIRECT_MARKETING | Direct Marketing |
DIRECT_MARKETING_CATALOG_MERCHANT | Direct Marketing - Catalog Merchant |
DIRECT_MARKETING_INBOUND_TELE | Direct Marketing - Inbound Tele |
DIRECT_MARKETING_OUTBOUND_TELE | Direct Marketing - Outbound Tele |
DIRECT_MARKETING_SUBSCRIPTION | Direct Marketing - Subscription |
DISCOUNT_STORES | Discount Stores |
DOOR_TO_DOOR_SALES | Door-To-Door Sales |
DRAPERY_WINDOW_COVERING_AND_UPHOLSTERY | Drapery, window covering, and upholstery |
DRINKING_PLACES | Drinking Places |
DRUGSTORE | Drugstore |
DURABLE_GOODS | Durable goods |
ECOMMERCE_DEVELOPMENT | eCommerce Development |
ECOMMERCE_SERVICES | eCommerce Services |
EDUCATIONAL_AND_TEXTBOOKS | Educational and textbooks |
ELECTRIC_RAZOR_STORES | Electric Razor Stores |
ELECTRICAL_AND_SMALL_APPLIANCE_REPAIR | Electrical and small appliance repair |
ELECTRICAL_CONTRACTORS | Electrical Contractors |
ELECTRICAL_PARTS_AND_EQUIPMENT | Electrical Parts and Equipment |
ELECTRONIC_CASH | Electronic Cash |
ELEMENTARY_AND_SECONDARY_SCHOOLS | Elementary and secondary schools |
EMPLOYMENT | Employment |
ENTERTAINERS | Entertainers |
ENTERTAINMENT_AND_MEDIA | Entertainment and media |
EQUIP_TOOL_FURNITURE_AND_APPLIANCE_RENTAL_AND_LEASING | Equip, Tool, Furniture, And Appliance Rental And Leasing |
ESCROW | Escrow |
EVENT_AND_WEDDING_PLANNING | Event & Wedding Planning |
EXERCISE_AND_FITNESS | Exercise and fitness |
EXERCISE_EQUIPMENT | Exercise Equipment |
EXTERMINATING_AND_DISINFECTING_SERVICES | Exterminating and disinfecting services |
FABRICS_AND_SEWING | Fabrics & Sewing |
FAMILY_CLOTHING_STORES | Family Clothing Stores |
FASHION_JEWELRY | Fashion jewelry |
FAST_FOOD_RESTAURANTS | Fast Food Restaurants |
FICTION_AND_NONFICTION | Fiction and nonfiction |
FINANCE_COMPANY | Finance company |
FINANCIAL_AND_INVESTMENT_ADVICE | Financial and investment advice |
FINANCIAL_INSTITUTIONS_MERCHANDISE_AND_SERVICES | Financial Institutions - Merchandise And Services |
FIREARM_ACCESSORIES | Firearm accessories |
FIREARMS_WEAPONS_AND_KNIVES | Firearms, Weapons and Knives |
FIREPLACE_AND_FIREPLACE_SCREENS | Fireplace, and fireplace screens |
FIREWORKS | Fireworks |
FISHING | Fishing |
FLORISTS | Florists |
FLOWERS | Flowers |
FOOD_DRINK_AND_NUTRITION | Food, Drink & Nutrition |
FOOD_PRODUCTS | Food Products |
FOOD_RETAIL_AND_SERVICE | Food retail and service |
FRAGRANCES_AND_PERFUMES | Fragrances and perfumes |
FREEZER_AND_LOCKER_MEAT_PROVISIONERS | Freezer and Locker Meat Provisioners |
FUEL_DEALERS_FUEL_OIL_WOOD_AND_COAL | Fuel Dealers-Fuel Oil, Wood & Coal |
FUEL_DEALERS_NON_AUTOMOTIVE | Fuel Dealers - Non Automotive |
FUNERAL_SERVICES_AND_CREMATORIES | Funeral Services & Crematories |
FURNISHING_AND_DECORATING | Furnishing & Decorating |
FURNITURE | Furniture |
FURRIERS_AND_FUR_SHOPS | Furriers and Fur Shops |
GADGETS_AND_OTHER_ELECTRONICS | Gadgets & other electronics |
GAMBLING | Gambling |
GAME_SOFTWARE | Game Software |
GAMES | Games |
GARDEN_SUPPLIES | Garden supplies |
GENERAL | General |
GENERAL_CONTRACTORS | General contractors |
GENERAL_GOVERNMENT | General - Government |
GENERAL_SOFTWARE | General - Software |
GENERAL_TELECOM | General - Telecom |
GIFTS_AND_FLOWERS | Gifts and flowers |
GLASS_PAINT_AND_WALLPAPER_STORES | Glass,Paint,And Wallpaper Stores |
GLASSWARE_CRYSTAL_STORES | Glassware, Crystal Stores |
GOVERNMENT | Government |
GOVERNMENT_IDS_AND_LICENSES | Government IDs and Licenses |
GOVERNMENT_LICENSED_ON_LINE_CASINOS_ON_LINE_GAMBLING | Government Licensed On-Line Casinos - On-Line Gambling |
GOVERNMENT_OWNED_LOTTERIES | Government-Owned Lotteries |
GOVERNMENT_SERVICES | Government services |
GRAPHIC_AND_COMMERCIAL_DESIGN | Graphic & Commercial Design |
GREETING_CARDS | Greeting Cards |
GROCERY_STORES_AND_SUPERMARKETS | Grocery Stores & Supermarkets |
HARDWARE_AND_TOOLS | Hardware & Tools |
HARDWARE_EQUIPMENT_AND_SUPPLIES | Hardware, Equipment, and Supplies |
HAZARDOUS_RESTRICTED_AND_PERISHABLE_ITEMS | Hazardous, Restricted and Perishable Items |
HEALTH_AND_BEAUTY_SPAS | Health and beauty spas |
HEALTH_AND_NUTRITION | Health & Nutrition |
HEALTH_AND_PERSONAL_CARE | Health and personal care |
HEARING_AIDS_SALES_AND_SUPPLIES | Hearing Aids Sales and Supplies |
HEATING_PLUMBING_AC | Heating, Plumbing, AC |
HIGH_RISK_MERCHANT | High Risk Merchant |
HIRING_SERVICES | Hiring services |
HOBBIES_TOYS_AND_GAMES | Hobbies, Toys & Games |
HOME_AND_GARDEN | Home and garden |
HOME_AUDIO | Home Audio |
HOME_DECOR | Home decor |
HOME_ELECTRONICS | Home Electronics |
HOSPITALS | Hospitals |
HOTELS_MOTELS_INNS_RESORTS | Hotels/Motels/Inns/Resorts |
HOUSEWARES | Housewares |
HUMAN_PARTS_AND_REMAINS | Human Parts and Remains |
HUMOROUS_GIFTS_AND_NOVELTIES | Humorous Gifts & Novelties |
HUNTING | Hunting |
IDS_LICENSES_AND_PASSPORTS | IDs, licenses, and passports |
ILLEGAL_DRUGS_AND_PARAPHERNALIA | Illegal Drugs & Paraphernalia |
INDUSTRIAL | Industrial |
INDUSTRIAL_AND_MANUFACTURING_SUPPLIES | Industrial and manufacturing supplies |
INSURANCE_AUTO_AND_HOME | Insurance - auto and home |
INSURANCE_DIRECT | Insurance - Direct |
INSURANCE_LIFE_AND_ANNUITY | Insurance - life and annuity |
INSURANCE_SALES_UNDERWRITING | Insurance Sales/Underwriting |
INSURANCE_UNDERWRITING_PREMIUMS | Insurance Underwriting, Premiums |
INTERNET_AND_NETWORK_SERVICES | Internet & Network Services |
INTRA_COMPANY_PURCHASES | Intra-Company Purchases |
LABORATORIES_DENTAL_MEDICAL | Laboratories-Dental/Medical |
LANDSCAPING | Landscaping |
LANDSCAPING_AND_HORTICULTURAL_SERVICES | Landscaping And Horticultural Services |
LAUNDRY_CLEANING_SERVICES | Laundry, Cleaning Services |
LEGAL | Legal |
LEGAL_SERVICES_AND_ATTORNEYS | Legal services and attorneys |
LOCAL_DELIVERY_SERVICE | Local delivery service |
LOCKSMITH | Locksmith |
LODGING_AND_ACCOMMODATIONS | Lodging and accommodations |
LOTTERY_AND_CONTESTS | Lottery and contests |
LUGGAGE_AND_LEATHER_GOODS | Luggage and leather goods |
LUMBER_AND_BUILDING_MATERIALS | Lumber & Building Materials |
MAGAZINES | Magazines |
MAINTENANCE_AND_REPAIR_SERVICES | Maintenance and repair services |
MAKEUP_AND_COSMETICS | Makeup and cosmetics |
MANUAL_CASH_DISBURSEMENTS | Manual Cash Disbursements |
MASSAGE_PARLORS | Massage Parlors |
MEDICAL | Medical |
MEDICAL_AND_PHARMACEUTICAL | Medical & Pharmaceutical |
MEDICAL_CARE | Medical care |
MEDICAL_EQUIPMENT_AND_SUPPLIES | Medical equipment and supplies |
MEDICAL_SERVICES | Medical Services |
MEETING_PLANNERS | Meeting Planners |
MEMBERSHIP_CLUBS_AND_ORGANIZATIONS | Membership clubs and organizations |
MEMBERSHIP_COUNTRY_CLUBS_GOLF | Membership/Country Clubs/Golf |
MEMORABILIA | Memorabilia |
MEN_AND_BOY_CLOTHING_AND_ACCESSORY_STORES | Men's And Boy's Clothing And Accessory Stores |
MEN_CLOTHING | Men's Clothing |
MERCHANDISE | Merchandise |
METAPHYSICAL | Metaphysical |
MILITARIA | Militaria |
MILITARY_AND_CIVIL_SERVICE_UNIFORMS | Military and civil service uniforms |
MISC._AUTOMOTIVE_AIRCRAFT_AND_FARM_EQUIPMENT_DEALERS | Misc. Automotive,Aircraft,And Farm Equipment Dealers |
MISC._GENERAL_MERCHANDISE | Misc. General Merchandise |
MISCELLANEOUS_GENERAL_SERVICES | Miscellaneous General Services |
MISCELLANEOUS_REPAIR_SHOPS_AND_RELATED_SERVICES | Miscellaneous Repair Shops And Related Services |
MODEL_KITS | Model Kits |
MONEY_TRANSFER_MEMBER_FINANCIAL_INSTITUTION | Money Transfer - Member Financial Institution |
MONEY_TRANSFER_MERCHANT | Money Transfer--Merchant |
MOTION_PICTURE_THEATERS | Motion Picture Theaters |
MOTOR_FREIGHT_CARRIERS_AND_TRUCKING | Motor Freight Carriers & Trucking |
MOTOR_HOME_AND_RECREATIONAL_VEHICLE_RENTAL | Motor Home And Recreational Vehicle Rental |
MOTOR_HOMES_DEALERS | Motor Homes Dealers |
MOTOR_VEHICLE_SUPPLIES_AND_NEW_PARTS | Motor Vehicle Supplies and New Parts |
MOTORCYCLE_DEALERS | Motorcycle Dealers |
MOTORCYCLES | Motorcycles |
MOVIE | Movie |
MOVIE_TICKETS | Movie tickets |
MOVING_AND_STORAGE | Moving and storage |
MULTI_LEVEL_MARKETING | Multi-level marketing |
MUSIC_CDS_CASSETTES_AND_ALBUMS | Music - CDs, cassettes and albums |
MUSIC_STORE_INSTRUMENTS_AND_SHEET_MUSIC | Music store - instruments and sheet music |
NETWORKING | Networking |
NEW_AGE | New Age |
NEW_PARTS_AND_SUPPLIES_MOTOR_VEHICLE | New parts and supplies - motor vehicle |
NEWS_DEALERS_AND_NEWSTANDS | News Dealers and Newstands |
NON_DURABLE_GOODS | Non-durable goods |
NON_FICTION | Non-Fiction |
NON_PROFIT_POLITICAL_AND_RELIGION | Non-Profit, Political & Religion |
NONPROFIT | Nonprofit |
NOVELTIES | Novelties |
OEM_SOFTWARE | Oem Software |
OFFICE_SUPPLIES_AND_EQUIPMENT | Office Supplies and Equipment |
ONLINE_DATING | Online Dating |
ONLINE_GAMING | Online gaming |
ONLINE_GAMING_CURRENCY | Online gaming currency |
ONLINE_SERVICES | online services |
OOUTBOUND_TELEMARKETING_MERCH | Ooutbound Telemarketing Merch |
OPHTHALMOLOGISTS_OPTOMETRIST | Ophthalmologists/Optometrist |
OPTICIANS_AND_DISPENSING | Opticians And Dispensing |
ORTHOPEDIC_GOODS_PROSTHETICS | Orthopedic Goods/Prosthetics |
OSTEOPATHS | Osteopaths |
OTHER | Other |
PACKAGE_TOUR_OPERATORS | Package Tour Operators |
PAINTBALL | Paintball |
PAINTS_VARNISHES_AND_SUPPLIES | Paints, Varnishes, and Supplies |
PARKING_LOTS_AND_GARAGES | Parking Lots & Garages |
PARTS_AND_ACCESSORIES | Parts and accessories |
PAWN_SHOPS | Pawn Shops |
PAYCHECK_LENDER_OR_CASH_ADVANCE | Paycheck lender or cash advance |
PERIPHERALS | Peripherals |
PERSONALIZED_GIFTS | Personalized Gifts |
PET_SHOPS_PET_FOOD_AND_SUPPLIES | Pet shops, pet food, and supplies |
PETROLEUM_AND_PETROLEUM_PRODUCTS | Petroleum and Petroleum Products |
PETS_AND_ANIMALS | Pets and animals |
PHOTOFINISHING_LABORATORIES_PHOTO_DEVELOPING | Photofinishing Laboratories,Photo Developing |
PHOTOGRAPHIC_STUDIOS_PORTRAITS | Photographic studios - portraits |
PHOTOGRAPHY | Photography |
PHYSICAL_GOOD | Physical Good |
PICTURE_VIDEO_PRODUCTION | Picture/Video Production |
PIECE_GOODS_NOTIONS_AND_OTHER_DRY_GOODS | Piece Goods Notions and Other Dry Goods |
PLANTS_AND_SEEDS | Plants and Seeds |
PLUMBING_AND_HEATING_EQUIPMENTS_AND_SUPPLIES | Plumbing & Heating Equipments & Supplies |
POLICE_RELATED_ITEMS | Police-Related Items |
POLITICAL_ORGANIZATIONS | Politcal Organizations |
POSTAL_SERVICES_GOVERNMENT_ONLY | Postal Services - Government Only |
POSTERS | Posters |
PREPAID_AND_STORED_VALUE_CARDS | Prepaid and stored value cards |
PRESCRIPTION_DRUGS | Prescription Drugs |
PROMOTIONAL_ITEMS | Promotional Items |
PUBLIC_WAREHOUSING_AND_STORAGE | Public Warehousing and Storage |
PUBLISHING_AND_PRINTING | Publishing and printing |
PUBLISHING_SERVICES | Publishing Services |
RADAR_DECTORS | Radar Dectors |
RADIO_TELEVISION_AND_STEREO_REPAIR | Radio, television, and stereo repair |
REAL_ESTATE | Real Estate |
REAL_ESTATE_AGENT | Real estate agent |
REAL_ESTATE_AGENTS_AND_MANAGERS_RENTALS | Real Estate Agents And Managers - Rentals |
RELIGION_AND_SPIRITUALITY_FOR_PROFIT | Religion and spirituality for profit |
RELIGIOUS | Religious |
RELIGIOUS_ORGANIZATIONS | Religious Organizations |
REMITTANCE | Remittance |
RENTAL_PROPERTY_MANAGEMENT | Rental property management |
RESIDENTIAL | Residential |
RETAIL | Retail |
RETAIL_FINE_JEWELRY_AND_WATCHES | Retail - fine jewelry and watches |
REUPHOLSTERY_AND_FURNITURE_REPAIR | Reupholstery and furniture repair |
RINGS | Rings |
ROOFING_SIDING_SHEET_METAL | Roofing/Siding, Sheet Metal |
RUGS_AND_CARPETS | Rugs & Carpets |
SCHOOLS_AND_COLLEGES | Schools and Colleges |
SCIENCE_FICTION | Science Fiction |
SCRAPBOOKING | Scrapbooking |
SCULPTURES | Sculptures |
SECURITIES_BROKERS_AND_DEALERS | Securities - Brokers And Dealers |
SECURITY_AND_SURVEILLANCE | Security and surveillance |
SECURITY_AND_SURVEILLANCE_EQUIPMENT | Security and surveillance equipment |
SECURITY_BROKERS_AND_DEALERS | Security brokers and dealers |
SEMINARS | Seminars |
SERVICE_STATIONS | Service Stations |
SERVICES | Services |
SEWING_NEEDLEWORK_FABRIC_AND_PIECE_GOODS_STORES | Sewing,Needlework,Fabric And Piece Goods Stores |
SHIPPING_AND_PACKING | Shipping & Packaging |
SHOE_REPAIR_HAT_CLEANING | Shoe Repair/Hat Cleaning |
SHOE_STORES | Shoe Stores |
SHOES | Shoes |
SNOWMOBILE_DEALERS | Snowmobile Dealers |
SOFTWARE | Software |
SPECIALTY_AND_MISC._FOOD_STORES | Specialty and misc. food stores |
SPECIALTY_CLEANING_POLISHING_AND_SANITATION_PREPARATIONS | Specialty Cleaning, Polishing And Sanitation Preparations |
SPECIALTY_OR_RARE_PETS | Specialty or rare pets |
SPORT_GAMES_AND_TOYS | Sport games and toys |
SPORTING_AND_RECREATIONAL_CAMPS | Sporting And Recreational Camps |
SPORTING_GOODS | Sporting Goods |
SPORTS_AND_OUTDOORS | Sports and outdoors |
SPORTS_AND_RECREATION | Sports & Recreation |
STAMP_AND_COIN | Stamp and coin |
STATIONARY_PRINTING_AND_WRITING_PAPER | Stationary, printing, and writing paper |
STENOGRAPHIC_AND_SECRETARIAL_SUPPORT_SERVICES | Stenographic and secretarial support services |
STOCKS_BONDS_SECURITIES_AND_RELATED_CERTIFICATES | Stocks, Bonds, Securities and Related Certificates |
STORED_VALUE_CARDS | Stored Value Cards |
SUPPLIES | Supplies |
SUPPLIES_AND_TOYS | Supplies & Toys |
SURVEILLANCE_EQUIPMENT | Surveillance Equipment |
SWIMMING_POOLS_AND_SPAS | Swimming Pools & Spas |
SWIMMING_POOLS_SALES_SUPPLIES_SERVICES | Swimming Pools-Sales,Supplies,Services |
TAILORS_AND_ALTERATIONS | Tailors and alterations |
TAX_PAYMENTS | Tax Payments |
TAX_PAYMENTS_GOVERNMENT_AGENCIES | Tax Payments - Government Agencies |
TAXICABS_AND_LIMOUSINES | Taxicabs and limousines |
TELECOMMUNICATION_SERVICES | Telecommunication Services |
TELEPHONE_CARDS | Telephone Cards |
TELEPHONE_EQUIPMENT | Telephone Equipment |
TELEPHONE_SERVICES | Telephone Services |
THEATER | Theater |
TIRE_RETREADING_AND_REPAIR | Tire Retreading and Repair |
TOLL_OR_BRIDGE_FEES | Toll or Bridge Fees |
TOOLS_AND_EQUIPMENT | Tools and equipment |
TOURIST_ATTRACTIONS_AND_EXHIBITS | Tourist Attractions And Exhibits |
TOWING_SERVICE | Towing service |
TOYS_AND_GAMES | Toys and games |
TRADE_AND_VOCATIONAL_SCHOOLS | Trade And Vocational Schools |
TRADEMARK_INFRINGEMENT | Trademark Infringement |
TRAILER_PARKS_AND_CAMPGROUNDS | Trailer Parks And Campgrounds |
TRAINING_SERVICES | Training services |
TRANSPORTATION_SERVICES | Transportation Services |
TRAVEL | Travel |
TRUCK_AND_UTILITY_TRAILER_RENTALS | Truck And Utility Trailer Rentals |
TRUCK_STOP | Truck Stop |
TYPESETTING_PLATE_MAKING_AND_RELATED_SERVICES | Typesetting, Plate Making, and Related Services |
USED_MERCHANDISE_AND_SECONDHAND_STORES | Used Merchandise And Secondhand Stores |
USED_PARTS_MOTOR_VEHICLE | Used parts - motor vehicle |
UTILITIES | Utilities |
UTILITIES_ELECTRIC_GAS_WATER_SANITARY | Utilities - Electric,Gas,Water,Sanitary |
VARIETY_STORES | Variety Stores |
VEHICLE_SALES | Vehicle sales |
VEHICLE_SERVICE_AND_ACCESSORIES | Vehicle service and accessories |
VIDEO_EQUIPMENT | Video Equipment |
VIDEO_GAME_ARCADES_ESTABLISH | Video Game Arcades/Establish |
VIDEO_GAMES_AND_SYSTEMS | Video Games & Systems |
VIDEO_TAPE_RENTAL_STORES | Video Tape Rental Stores |
VINTAGE_AND_COLLECTIBLE_VEHICLES | Vintage and Collectible Vehicles |
VINTAGE_AND_COLLECTIBLES | Vintage and collectibles |
VITAMINS_AND_SUPPLEMENTS | Vitamins & Supplements |
VOCATIONAL_AND_TRADE_SCHOOLS | Vocational and trade schools |
WATCH_CLOCK_AND_JEWELRY_REPAIR | Watch, clock, and jewelry repair |
WEB_HOSTING_AND_DESIGN | Web hosting and design |
WELDING_REPAIR | Welding Repair |
WHOLESALE_CLUBS | Wholesale Clubs |
WHOLESALE_FLORIST_SUPPLIERS | Wholesale Florist Suppliers |
WHOLESALE_PRESCRIPTION_DRUGS | Wholesale Prescription Drugs |
WILDLIFE_PRODUCTS | Wildlife Products |
WIRE_TRANSFER | Wire Transfer |
WIRE_TRANSFER_AND_MONEY_ORDER | Wire transfer and money order |
WOMEN_ACCESSORY_SPECIALITY | Women's Accessory/Speciality |
WOMEN_CLOTHING | Women's clothing |
"AC_REFRIGERATION_REPAIR"
The list of products, with details.
Array of objects (product_collection_element) [ 1 .. 32767 ] items An array of products. | |
total_items | integer [ 0 .. 500000000 ] The total number of items. |
total_pages | integer [ 0 .. 100000000 ] The total number of pages. |
Array of objects (Link Description) An array of request-related HATEOAS links. |
{- "products": [
- {
- "id": "string",
- "name": "string",
- "description": "string",
- "links": [
- {
- "href": "string",
- "rel": "string",
- "method": "GET"
}
], - "create_time": "stringstringstringst"
}
], - "total_items": 500000000,
- "total_pages": 100000000,
- "links": [
- {
- "href": "string",
- "rel": "string",
- "method": "GET"
}
]
}
The details for a product in the collection response.
id | string [ 6 .. 50 ] characters The ID of the product. |
name | string [ 1 .. 127 ] characters The product name. |
description | string [ 1 .. 256 ] characters The product description. |
Array of objects (Link Description) An array of request-related HATEOAS links. | |
create_time | string <ppaas_date_time_v3> (date_time) [ 20 .. 64 ] characters ^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|... The date and time when the product was created, in Internet date and time format. |
{- "id": "string",
- "name": "string",
- "description": "string",
- "links": [
- {
- "href": "string",
- "rel": "string",
- "method": "GET"
}
], - "create_time": "stringstringstringst"
}
The create product request details.
id | string [ 6 .. 50 ] characters The ID of the product. You can specify the SKU for the product. If you omit the ID, the system generates it. System-generated IDs have the | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name required | string [ 1 .. 127 ] characters The product name. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
description | string [ 1 .. 256 ] characters The product description. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type required | string [ 1 .. 24 ] characters ^[A-Z_]+$ Default: "PHYSICAL" The product type. Indicates whether the product is physical or digital goods, or a service.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
category | string (product_category) [ 4 .. 256 ] characters ^[A-Z_]+$ The product category.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
image_url | string <uri> [ 1 .. 2000 ] characters The image URL for the product. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
home_url | string <uri> [ 1 .. 2000 ] characters The home page URL for the product. |
{- "id": "string",
- "name": "string",
- "description": "string",
- "type": "PHYSICAL",
- "category": "AC_REFRIGERATION_REPAIR",
}