하위 벤더 상세 조회
curl --request GET \
--url https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid} \
--header 'Secret-Token: <api-key>'import requests
url = "https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}"
headers = {"Secret-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Secret-Token': '<api-key>'}};
fetch('https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Secret-Token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Secret-Token", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}")
.header("Secret-Token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Secret-Token"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"firstManagerUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"manager": {
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"username": "<string>",
"nickname": "<string>",
"enabled": true,
"emailVerified": true,
"createdAt": "2023-11-07T05:31:56Z",
"phone": "<string>",
"choo": "<string>"
},
"name": "<string>",
"description": "<string>",
"secretKey": "<string>",
"paymentKey": "<string>",
"deliveryCharge": {
"useDefaultCourier": true,
"useDeliveryCharge": true,
"useLocalShipCharge": true,
"jejuShipAmount": 123,
"islandAndMountainShipAmount": 123,
"defaultCourierId": "<string>",
"defaultDeliveryCharge": 123,
"freeShipOverAmount": 123
},
"vendorSettings": {
"vatIncluded": true,
"vatRate": 123,
"notiBeforePayment": true,
"notiBeforePaymentDays": 123,
"usageAutoRefund": true,
"paymentAmountScale": 123,
"notiBeforePaymentTime": {
"hour": 123,
"minute": 123,
"second": 123,
"nano": 123
},
"workspace": "<string>",
"customDomain": {
"domain": "<string>"
}
},
"checkFirstActivation": true,
"surveyed": true,
"useDormantCustomer": true,
"useDormantNotification": true,
"apps": [
{
"productCode": "<string>",
"priceCode": "<string>",
"installed": true,
"subscriptionId": 123,
"settings": "<string>"
}
],
"useAuth": true,
"useStore": true,
"usePayout": true,
"zoneId": "<string>",
"currency": "<string>",
"currencyLock": true,
"id": 123,
"parentUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"realmKeycloakId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"realmName": "<string>",
"realmEmailAsUsername": true,
"featuredImageUrl": "<string>",
"email": "<string>",
"wordpress": {
"consumerKey": "<string>",
"consumerSecret": "<string>"
},
"contactUrl": "<string>",
"checkFailStepbuilder": "<string>",
"vendorTerms": {
"useCheckBox": true,
"termsAgree": [
{
"field": true,
"title": "<string>",
"order": 123,
"content": "<string>"
}
]
}
}{
"errorCode": "<string>",
"traceId": "<string>",
"errorMessage": "<string>",
"details": {}
}{
"errorCode": "<string>",
"traceId": "<string>",
"errorMessage": "<string>",
"details": {}
}{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"firstManagerUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"manager": {
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"username": "<string>",
"nickname": "<string>",
"enabled": true,
"emailVerified": true,
"createdAt": "2023-11-07T05:31:56Z",
"phone": "<string>",
"choo": "<string>"
},
"name": "<string>",
"description": "<string>",
"secretKey": "<string>",
"paymentKey": "<string>",
"deliveryCharge": {
"useDefaultCourier": true,
"useDeliveryCharge": true,
"useLocalShipCharge": true,
"jejuShipAmount": 123,
"islandAndMountainShipAmount": 123,
"defaultCourierId": "<string>",
"defaultDeliveryCharge": 123,
"freeShipOverAmount": 123
},
"vendorSettings": {
"vatIncluded": true,
"vatRate": 123,
"notiBeforePayment": true,
"notiBeforePaymentDays": 123,
"usageAutoRefund": true,
"paymentAmountScale": 123,
"notiBeforePaymentTime": {
"hour": 123,
"minute": 123,
"second": 123,
"nano": 123
},
"workspace": "<string>",
"customDomain": {
"domain": "<string>"
}
},
"checkFirstActivation": true,
"surveyed": true,
"useDormantCustomer": true,
"useDormantNotification": true,
"apps": [
{
"productCode": "<string>",
"priceCode": "<string>",
"installed": true,
"subscriptionId": 123,
"settings": "<string>"
}
],
"useAuth": true,
"useStore": true,
"usePayout": true,
"zoneId": "<string>",
"currency": "<string>",
"currencyLock": true,
"id": 123,
"parentUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"realmKeycloakId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"realmName": "<string>",
"realmEmailAsUsername": true,
"featuredImageUrl": "<string>",
"email": "<string>",
"wordpress": {
"consumerKey": "<string>",
"consumerSecret": "<string>"
},
"contactUrl": "<string>",
"checkFailStepbuilder": "<string>",
"vendorTerms": {
"useCheckBox": true,
"termsAgree": [
{
"field": true,
"title": "<string>",
"order": 123,
"content": "<string>"
}
]
}
}벤더 API
하위 벤더 상세 조회
GET
/
api
/
v1
/
vendors
/
{vendorUuid}
/
children
/
{childUuid}
하위 벤더 상세 조회
curl --request GET \
--url https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid} \
--header 'Secret-Token: <api-key>'import requests
url = "https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}"
headers = {"Secret-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'Secret-Token': '<api-key>'}};
fetch('https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Secret-Token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Secret-Token", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}")
.header("Secret-Token", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.steppay.kr/api/v1/vendors/{vendorUuid}/children/{childUuid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Secret-Token"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"firstManagerUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"manager": {
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"username": "<string>",
"nickname": "<string>",
"enabled": true,
"emailVerified": true,
"createdAt": "2023-11-07T05:31:56Z",
"phone": "<string>",
"choo": "<string>"
},
"name": "<string>",
"description": "<string>",
"secretKey": "<string>",
"paymentKey": "<string>",
"deliveryCharge": {
"useDefaultCourier": true,
"useDeliveryCharge": true,
"useLocalShipCharge": true,
"jejuShipAmount": 123,
"islandAndMountainShipAmount": 123,
"defaultCourierId": "<string>",
"defaultDeliveryCharge": 123,
"freeShipOverAmount": 123
},
"vendorSettings": {
"vatIncluded": true,
"vatRate": 123,
"notiBeforePayment": true,
"notiBeforePaymentDays": 123,
"usageAutoRefund": true,
"paymentAmountScale": 123,
"notiBeforePaymentTime": {
"hour": 123,
"minute": 123,
"second": 123,
"nano": 123
},
"workspace": "<string>",
"customDomain": {
"domain": "<string>"
}
},
"checkFirstActivation": true,
"surveyed": true,
"useDormantCustomer": true,
"useDormantNotification": true,
"apps": [
{
"productCode": "<string>",
"priceCode": "<string>",
"installed": true,
"subscriptionId": 123,
"settings": "<string>"
}
],
"useAuth": true,
"useStore": true,
"usePayout": true,
"zoneId": "<string>",
"currency": "<string>",
"currencyLock": true,
"id": 123,
"parentUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"realmKeycloakId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"realmName": "<string>",
"realmEmailAsUsername": true,
"featuredImageUrl": "<string>",
"email": "<string>",
"wordpress": {
"consumerKey": "<string>",
"consumerSecret": "<string>"
},
"contactUrl": "<string>",
"checkFailStepbuilder": "<string>",
"vendorTerms": {
"useCheckBox": true,
"termsAgree": [
{
"field": true,
"title": "<string>",
"order": 123,
"content": "<string>"
}
]
}
}{
"errorCode": "<string>",
"traceId": "<string>",
"errorMessage": "<string>",
"details": {}
}{
"errorCode": "<string>",
"traceId": "<string>",
"errorMessage": "<string>",
"details": {}
}{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"firstManagerUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"manager": {
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"username": "<string>",
"nickname": "<string>",
"enabled": true,
"emailVerified": true,
"createdAt": "2023-11-07T05:31:56Z",
"phone": "<string>",
"choo": "<string>"
},
"name": "<string>",
"description": "<string>",
"secretKey": "<string>",
"paymentKey": "<string>",
"deliveryCharge": {
"useDefaultCourier": true,
"useDeliveryCharge": true,
"useLocalShipCharge": true,
"jejuShipAmount": 123,
"islandAndMountainShipAmount": 123,
"defaultCourierId": "<string>",
"defaultDeliveryCharge": 123,
"freeShipOverAmount": 123
},
"vendorSettings": {
"vatIncluded": true,
"vatRate": 123,
"notiBeforePayment": true,
"notiBeforePaymentDays": 123,
"usageAutoRefund": true,
"paymentAmountScale": 123,
"notiBeforePaymentTime": {
"hour": 123,
"minute": 123,
"second": 123,
"nano": 123
},
"workspace": "<string>",
"customDomain": {
"domain": "<string>"
}
},
"checkFirstActivation": true,
"surveyed": true,
"useDormantCustomer": true,
"useDormantNotification": true,
"apps": [
{
"productCode": "<string>",
"priceCode": "<string>",
"installed": true,
"subscriptionId": 123,
"settings": "<string>"
}
],
"useAuth": true,
"useStore": true,
"usePayout": true,
"zoneId": "<string>",
"currency": "<string>",
"currencyLock": true,
"id": 123,
"parentUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"realmKeycloakId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"realmName": "<string>",
"realmEmailAsUsername": true,
"featuredImageUrl": "<string>",
"email": "<string>",
"wordpress": {
"consumerKey": "<string>",
"consumerSecret": "<string>"
},
"contactUrl": "<string>",
"checkFailStepbuilder": "<string>",
"vendorTerms": {
"useCheckBox": true,
"termsAgree": [
{
"field": true,
"title": "<string>",
"order": 123,
"content": "<string>"
}
]
}
}Authorizations
Response
정상적으로 조회됨
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I