Site Information
POST /api/v1/site_information
Create Site Information
Creates a new site information record for the onboarding live application of the currently authenticated merchant.
betaThis API is a pre-release. Please contact KOMOJU to obtain more usage instructions before using it.
サンプル
- cURL
- Node.js
- Ruby
curl -X POST https://komoju.com/api/v1/live_application/site_information \
-u sk_123456: \
-d "site_name=Gaylord%20and%20Sons" \
-d "site_name_kana=%EF%BD%B6%EF%BE%80%EF%BD%B6%EF%BE%85" \
-d "site_name_alphabet=C.R.E.A.M" \
-d "site_url=http%3A%2F%2Fward.co%2Fnigel" \
-d "site_integration_type=shopify" \
-d "establishment_date=2020-11-19" \
-d "store_country=JP" \
-d "store_postal_code=28461-1338" \
-d "store_prefecture_state=Louisiana" \
-d "store_prefecture_state_kana=" \
-d "store_city=South%20Anneside" \
-d "store_city_kana=" \
-d "store_address=57566%20Hai%20Turnpike" \
-d "store_address_kana=%EF%BD%B6%EF%BE%80%EF%BD%B6%EF%BE%85" \
-d "store_building_name=Park%20Crossing" \
-d "store_building_name_kana=%EF%BD%B6%EF%BE%80%EF%BD%B6%EF%BE%85" \
-d "site_product_description=Lightweight%20Cotton%20Lamp" \
-d "site_annual_sales=6420493533" \
-d "site_annual_sales_currency=JPY" \
-d "site_average_transactional_value=300" \
-d "site_average_transactional_currency=JPY" \
-d "site_minimum_product_pricing_cents=1" \
-d "site_minimum_product_pricing_currency=JPY" \
-d "site_maximum_product_pricing_cents=1000" \
-d "site_maximum_product_pricing_currency=JPY" \
-d "sctl_url=http%3A%2F%2Fkuhn.co%2Ftrea" \
-d "aup_accepted=true"
var querystring = require('querystring');
var https = require('https');
var secret_key = 'sk_123456'
var auth = 'Basic ' + Buffer.from(secret_key + ':').toString('base64');
var post_data = querystring.stringify({
'site_name': 'Gaylord and Sons',
'site_name_kana': 'カタカナ',
'site_name_alphabet': 'C.R.E.A.M',
'site_url': 'http://ward.co/nigel',
'site_integration_type': 'shopify',
'establishment_date': '2020-11-19',
'store_country': 'JP',
'store_postal_code': '28461-1338',
'store_prefecture_state': 'Louisiana',
'store_prefecture_state_kana': '',
'store_city': 'South Anneside',
'store_city_kana': '',
'store_address': '57566 Hai Turnpike',
'store_address_kana': 'カタカナ',
'store_building_name': 'Park Crossing',
'store_building_name_kana': 'カタカナ',
'site_product_description': 'Lightweight Cotton Lamp',
'site_annual_sales': '6420493533',
'site_annual_sales_currency': 'JPY',
'site_average_transactional_value': '300',
'site_average_transactional_currency': 'JPY',
'site_minimum_product_pricing_cents': '1',
'site_minimum_product_pricing_currency': 'JPY',
'site_maximum_product_pricing_cents': '1000',
'site_maximum_product_pricing_currency': 'JPY',
'sctl_url': 'http://kuhn.co/trea',
'aup_accepted': 'true'
});
var post_options = {
host: 'komoju.com',
port: '443',
path: '/api/v1/live_application/site_information',
method: 'POST',
headers: {
'Authorization': auth,
'Content-Length': Buffer.byteLength(post_data)
}
};
var post_req = https.request(post_options, function(res) {
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log(chunk);
});
});
post_req.write(post_data);
post_req.end();
require 'uri'
require 'net/https'
require 'json'
require 'base64'
require 'pp'
uri = URI.parse('https://komoju.com/api/v1/live_application/site_information')
https = Net::HTTP.new(uri.host, uri.port)
https.use_ssl = true
secret_key = 'sk_123456'
auth = Base64.encode64("#{secret_key}:")
headers = {
'Content-Type' => 'application/json',
'Authorization' => "Basic #{auth}"
}
body = {
site_name: "Gaylord and Sons",
site_name_kana: "カタカナ",
site_name_alphabet: "C.R.E.A.M",
site_url: "http://ward.co/nigel",
site_integration_type: "shopify",
establishment_date: "2020-11-19",
store_country: "JP",
store_postal_code: "28461-1338",
store_prefecture_state: "Louisiana",
store_prefecture_state_kana: "",
store_city: "South Anneside",
store_city_kana: "",
store_address: "57566 Hai Turnpike",
store_address_kana: "カタカナ",
store_building_name: "Park Crossing",
store_building_name_kana: "カタカナ",
site_product_description: "Lightweight Cotton Lamp",
site_annual_sales: "6420493533",
site_annual_sales_currency: "JPY",
site_average_transactional_value: "300",
site_average_transactional_currency: "JPY",
site_minimum_product_pricing_cents: "1",
site_minimum_product_pricing_currency: "JPY",
site_maximum_product_pricing_cents: "1000",
site_maximum_product_pricing_currency: "JPY",
sctl_url: "http://kuhn.co/trea",
aup_accepted: "true"
}
res = https.post(
uri.path,
body.to_json,
headers
)
puts res.body
{
"resource": "site_information",
"status": "pending",
"created_at": "2021-03-05T13:06:27.000+09:00",
"updated_at": "2021-03-05T13:06:27.000+09:00",
"site_name": "Gaylord and Sons",
"site_name_kana": "カタカナ",
"site_name_alphabet": "C.R.E.A.M",
"site_url": "http://ward.co/nigel",
"site_integration_type": "shopify",
"establishment_date": "2020-11-19",
"store_country": "JP",
"store_postal_code": "28461-1338",
"store_prefecture_state": "Louisiana",
"store_prefecture_state_kana": null,
"store_city": "South Anneside",
"store_city_kana": null,
"store_address": "57566 Hai Turnpike",
"store_address_kana": "カタカナ",
"store_building_name": "Park Crossing",
"store_building_name_kana": "カタカナ",
"site_product_description": "Lightweight Cotton Lamp",
"site_annual_sales": 6420493533,
"site_annual_sales_currency": "JPY",
"site_average_transactional_value": 300,
"site_average_transactional_currency": "JPY",
"site_minimum_product_pricing_cents": 1,
"site_minimum_product_pricing_currency": "JPY",
"site_maximum_product_pricing_cents": 1000,
"site_maximum_product_pricing_currency": "JPY",
"sctl_url": "http://kuhn.co/trea",
"sales_permit_required": false,
"aup_accepted": true
}
パラメータ
名前 | 説明 |
---|---|
site_name 任意 |
Site Name of the Site Information. |
site_name_kana 任意 |
Site Name (Kana) of the Site Information. |
site_name_alphabet 任意 |
Site Name (Alphabet) of the Site Information. |
site_url 任意 |
Site URL of the Site Information. |
site_integration_type 任意 |
Integration Type of the Site Information.. |
establishment_date 任意 |
Site Establishment Date of the Site Information.. |
store_country 任意 |
Country of the Store Address. |
store_postal_code 任意 |
Address of the Store Address. |
store_prefecture_state 任意 |
Prefecture/State of the Store Address. |
store_prefecture_state_kana 任意 |
Prefecture/State (Kana) of the Store Address. |
store_city 任意 |
City of the Store Address. |
store_city_kana 任意 |
City (Kana) of the Store Address. |
store_address 任意 |
Address of the Store Address. |
store_address_kana 任意 |
Address (Kana) of the Store Address. |
store_building_name 任意 |
Building Name of the Store Address. |
store_building_name_kana 任意 |
Building Name (Kana) of the Store Address. |
site_product_description 任意 |
Product Description of the Site Information. |
site_annual_sales 任意 |
Annual Sales Forecast Cents of the Site Information. |
site_annual_sales_currency 任意 |
Annual Sales Forecast Currency of the Site Information. |
site_average_transactional_value 任意 |
Average Transactional Value Cents of the Site Information. |
site_average_transactional_currency 任意 |
Average Transactional Value Currency of the Site Information. |
site_minimum_product_pricing_cents 任意 |
Minimum Product Pricing Cents of the Site Information. |
site_minimum_product_pricing_currency 任意 |
Minimum Product Pricing Currency of the Site Information. |
site_maximum_product_pricing_cents 任意 |
Minimum Product Pricing Cents of the Site Information. |
site_maximum_product_pricing_currency 任意 |
Maximum Product Pricing Currency of the Site Information. |
sctl_url 任意 |
Notation based on Specified Commercial Transactions Law URL. A Specified Commercial Transaction Act page is required when operating an online shop in Japan. During the examination process, we check if the page exists and confirm the contents of the page. For more details, please see What is the Specified Commercial Transactions Law? or Article of Specified Commercial Transaction Law (PDF:166KB). |
aup_accepted 任意 |
Have the merchant acknowledged and read the acceptable use policy and agree with the acceptable use policy? |
GET /api/v1/site_information
Show Site Information
Show the fields of an existing site information record for the onboarding live application of the currently authenticated merchant.
betaThis API is a pre-release. Please contact KOMOJU to obtain more usage instructions before using it.
サンプル
- cURL
- Node.js
- Ruby
curl -X GET https://komoju.com/api/v1/live_application/site_information \
-u sk_123456:
var https = require('https');
var secret_key = 'sk_123456'
var auth = 'Basic ' + Buffer.from(secret_key + ':').toString('base64');
var get_options = {
host: 'komoju.com',
port: '443',
path: '/api/v1/live_application/site_information',
method: 'GET',
headers: {
'Authorization': auth
}
};
var get_req = https.request(get_options, function(res) {
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log(chunk);
});
});
get_req.end();
require 'uri'
require 'net/https'
require 'json'
require 'base64'
require 'pp'
uri = URI.parse('https://komoju.com/api/v1/live_application/site_information')
https = Net::HTTP.new(uri.host, uri.port)
https.use_ssl = true
secret_key = 'sk_123456'
auth = Base64.encode64("#{secret_key}:")
headers = {
'Content-Type' => 'application/json',
'Authorization' => "Basic #{auth}"
}
res = https.get(uri.path, headers)
puts res.body
{
"resource": "site_information",
"status": "pending",
"created_at": "2021-03-05T13:06:27.000+09:00",
"updated_at": "2021-03-05T13:06:27.000+09:00",
"site_name": "Gaylord and Sons",
"site_name_kana": "カタカナ",
"site_name_alphabet": "C.R.E.A.M",
"site_url": "http://ward.co/nigel",
"site_integration_type": "shopify",
"establishment_date": "2020-11-19",
"store_country": "JP",
"store_postal_code": "28461-1338",
"store_prefecture_state": "Louisiana",
"store_prefecture_state_kana": null,
"store_city": "South Anneside",
"store_city_kana": null,
"store_address": "57566 Hai Turnpike",
"store_address_kana": "カタカナ",
"store_building_name": "Park Crossing",
"store_building_name_kana": "カタカナ",
"site_product_description": "Lightweight Cotton Lamp",
"site_annual_sales": 6420493533,
"site_annual_sales_currency": "JPY",
"site_average_transactional_value": 300,
"site_average_transactional_currency": "JPY",
"site_minimum_product_pricing_cents": 1,
"site_minimum_product_pricing_currency": "JPY",
"site_maximum_product_pricing_cents": 1000,
"site_maximum_product_pricing_currency": "JPY",
"sctl_url": "http://kuhn.co/trea",
"sales_permit_required": false,
"aup_accepted": true
}
PATCH /api/v1/site_information
Update Site Information
Update the fields of an existing site information record for the onboarding live application of the currently authenticated merchant.
betaThis API is a pre-release. Please contact KOMOJU to obtain more usage instructions before using it.
サンプル
- cURL
- Node.js
- Ruby
curl -X PATCH https://komoju.com/api/v1/live_application/site_information \
-u sk_123456: \
-d "site_name=I%20am%20changing%20this%20in%20this%20request"
var querystring = require('querystring');
var https = require('https');
var secret_key = 'sk_123456'
var auth = 'Basic ' + Buffer.from(secret_key + ':').toString('base64');
var patch_data = querystring.stringify({
'site_name': 'I am changing this in this request'
});
var patch_options = {
host: 'komoju.com',
port: '443',
path: '/api/v1/live_application/site_information',
method: 'PATCH',
headers: {
'Authorization': auth,
'Content-Length': Buffer.byteLength(patch_data)
}
};
var patch_req = https.request(patch_options, function(res) {
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log(chunk);
});
});
patch_req.write(patch_data);
patch_req.end();
require 'uri'
require 'net/https'
require 'json'
require 'base64'
require 'pp'
uri = URI.parse('https://komoju.com/api/v1/live_application/site_information')
https = Net::HTTP.new(uri.host, uri.port)
https.use_ssl = true
secret_key = 'sk_123456'
auth = Base64.encode64("#{secret_key}:")
headers = {
'Content-Type' => 'application/json',
'Authorization' => "Basic #{auth}"
}
body = {
site_name: "I am changing this in this request"
}
res = https.patch(
uri.path,
body.to_json,
headers
)
puts res.body
{
"resource": "site_information",
"status": "pending",
"created_at": "2021-03-05T13:06:27.000+09:00",
"updated_at": "2021-03-05T13:06:27.000+09:00",
"site_name": "I am changing this in this request",
"site_name_kana": "カタカナ",
"site_name_alphabet": "C.R.E.A.M",
"site_url": "http://ward.co/nigel",
"site_integration_type": "shopify",
"establishment_date": "2020-11-19",
"store_country": "JP",
"store_postal_code": "28461-1338",
"store_prefecture_state": "Louisiana",
"store_prefecture_state_kana": null,
"store_city": "South Anneside",
"store_city_kana": null,
"store_address": "57566 Hai Turnpike",
"store_address_kana": "カタカナ",
"store_building_name": "Park Crossing",
"store_building_name_kana": "カタカナ",
"site_product_description": "Lightweight Cotton Lamp",
"site_annual_sales": 6420493533,
"site_annual_sales_currency": "JPY",
"site_average_transactional_value": 300,
"site_average_transactional_currency": "JPY",
"site_minimum_product_pricing_cents": 1,
"site_minimum_product_pricing_currency": "JPY",
"site_maximum_product_pricing_cents": 1000,
"site_maximum_product_pricing_currency": "JPY",
"sctl_url": "http://kuhn.co/trea",
"sales_permit_required": false,
"aup_accepted": true
}
パラメータ
名前 | 説明 |
---|---|
site_name 任意 |
Site Name of the Site Information. |
site_name_kana 任意 |
Site Name (Kana) of the Site Information. |
site_name_alphabet 任意 |
Site Name (Alphabet) of the Site Information. |
site_url 任意 |
Site URL of the Site Information. |
site_integration_type 任意 |
Integration Type of the Site Information.. |
establishment_date 任意 |
Site Establishment Date of the Site Information.. |
store_country 任意 |
Country of the Store Address. |
store_postal_code 任意 |
Address of the Store Address. |
store_prefecture_state 任意 |
Prefecture/State of the Store Address. |
store_prefecture_state_kana 任意 |
Prefecture/State (Kana) of the Store Address. |
store_city 任意 |
City of the Store Address. |
store_city_kana 任意 |
City (Kana) of the Store Address. |
store_address 任意 |
Address of the Store Address. |
store_address_kana 任意 |
Address (Kana) of the Store Address. |
store_building_name 任意 |
Building Name of the Store Address. |
store_building_name_kana 任意 |
Building Name (Kana) of the Store Address. |
site_product_description 任意 |
Product Description of the Site Information. |
site_annual_sales 任意 |
Annual Sales Forecast Cents of the Site Information. |
site_annual_sales_currency 任意 |
Annual Sales Forecast Currency of the Site Information. |
site_average_transactional_value 任意 |
Average Transactional Value Cents of the Site Information. |
site_average_transactional_currency 任意 |
Average Transactional Value Currency of the Site Information. |
site_minimum_product_pricing_cents 任意 |
Minimum Product Pricing Cents of the Site Information. |
site_minimum_product_pricing_currency 任意 |
Minimum Product Pricing Currency of the Site Information. |
site_maximum_product_pricing_cents 任意 |
Minimum Product Pricing Cents of the Site Information. |
site_maximum_product_pricing_currency 任意 |
Maximum Product Pricing Currency of the Site Information. |
sctl_url 任意 |
Notation based on Specified Commercial Transactions Law URL. A Specified Commercial Transaction Act page is required when operating an online shop in Japan. During the examination process, we check if the page exists and confirm the contents of the page. For more details, please see What is the Specified Commercial Transactions Law? or Article of Specified Commercial Transaction Law (PDF:166KB). |
aup_accepted 任意 |
Have the merchant acknowledged and read the acceptable use policy and agree with the acceptable use policy? |