...
Endpoint | product environment: https://prod.ax-cloud.com/v1/channel/products/tour test environment: https://test.ax-cloud.com/v1/channel/products/tour |
---|---|
Method | GET |
Description | Product List 를 조회합니다. |
Content-Type | application/json |
Headers > Authorization | Token {api_key} |
Headers > Channel | Code {channel_code} |
2) Query Parameter
Name | Required | Type | Description |
---|---|---|---|
page | X | Integer | Page number(default : 1) |
page_size | X | Integer | Size per page(default : 25) |
...
Code Block |
---|
curl -X 'GET' \
'https://prod.ax-cloud.com/v1/channel/products/tour' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Token api_key_secret' \
-d '{
"status_code": 200,
"products": [
{
"product_code": "1f373f00-ecb0-485a-beed-63529d61703e",
"category": "Tour",
"product_listing_language": "Englisg",
"tour_guide_certification": "Yes",
"separate_driver_included": "No",
"product_name": "New Bern City Tour"
"departure_city": "United States - New Bern, NC",
"transportation": "On Foot",
"cancellation_type": "Anytime cancellation"
}
]
}' |
...