For the complete documentation index, see llms.txt. This page is also available as Markdown.

1. Getting started with Archisketch App

Explains the initial setup for the HTML <script> tag or the JavaScript SDK.

Please Check in Advance

Installation Steps

Archisketch Installation Process consists of three main steps:

1

Request/Create an Enterprise Admin Account

πŸ“˜ Already have an Enterprise Admin Account?

If you already have an Enterprise Admin Account, feel free to skip this step. πŸ™‡β€β™‚οΈ

Anyone who has purchased the Archisketch Enterprise Service is eligible to obtain an Enterprise Admin Account.

If you do not have an Enterprise Admin Account (Admin), please create an account through Archisketch ChannelTalk or Contact Us.

Archisketch integration is a 1:1 integration process between the Cafe24 admin account and the Archisketch admin account.
2

Integrate Archisketch Connector

Step_01.

Log in to the Archisketch dashboard with an administrator account, then click on [Integration] > [Insert Script Tag Card] > [Check Connection] to proceed to the connector page.

πŸ‘† Click on the image to see it larger.

πŸ‘† Clicking on the image allows you to view it in a larger size.

Step_02.

Click the [Start Integration] button on the connector page, enter the admin account, and proceed with account authentication.

Step_03.

After logging in with the admin account, click the [Integrate Script button] to activate the script code to be integrated.

Step_04.

When the script integration is completed successfully:

  1. The integration completion page will appear on the connector page.

  2. The activated Insert Script Tag card will be visible on the dashboard.

πŸ‘ Script URL

The Script URL in the activated card will be used later when inserting the script into the website.

When installation is completed successfully, the installation completion page appears.

When the script integration is completed successfully, the integration completion page will appear.

When the script linkage is completed properly, the Godomall card is activated.

When the script integration is completed successfully, the script tag card will become active.

3

Insert Archisketch Script

Step_01.

To allow the Archisketch module to synchronize user data, please set up the global variable (as_user) first.

  • βœ… The variable name must be set as as_user.

  • βœ… memberId, name, nickName, and email are required for Archisketch integration.

  • βœ… The memberId must be unique, and if the other values are missing, please set default values as shown below.

const as_user = {};

window.as_user = {
  memberId:"User ID", // The memberId must be "unique."
  name: "User name" || `${memberId}-name`,
  nickName: "User nickname(alias)" || `${memberId}-nickName`,
  email: "User e-mail(Ex]archisketch@archisketch.com)" || `${memberId}-email`
  // or Please modify the fallback data to match the email format.
};

Step_02.

2-1. Find the <head> tag in your website (or web service) HTML code.

2-2. Copy the Archisketch installation script and paste it just above the closing </head> tag.

2-3. Alternatively, you can insert the script in a React environment as shown in the example below:

  • βœ… The scriptUrl value can be obtained from [Dashboard > Integration Page > Insert Script Card] after integration.

  • βœ… When entering the scriptUrl, you don't need to include the πŸ‘‰ emoji.

Step_03.

1️⃣ Declare Global Variables

2️⃣ Insert <script> Code into Website HTML

πŸ‘† If both of the above procedures have been completed correctly, you will see the Archisketch entry button appear on the website as shown below.

  • βœ… After installation, it may take 1-2 seconds for the button to appear, depending on the internet environment.

Customer Information Provided to Archisketch

When users visiting the website log in to Archisketch or new members sign up, the following customer information is automatically synchronized with Archisketch.

User Profile DB

Data
Description

member_id

A unique identifier for each member (such as a member ID).

name

User name

nickname

User nickname

email

User e-mail

Uninstall Archisketch

Step_01.

Log in to the Archisketch dashboard using an administrator account, then click [Integration] > [Insert Script Card] > [Check Connection] to proceed to the connector. Once in the connector, reauthenticate with the administrator account and click the [Disconnect Script] button.

Delete with the Manage button

πŸ‘† Clicking on the image allows you to view it in a larger size.

Step_02.

Please remove the Archisketch script from the HTML, then save and deploy the changes.

Last updated

Was this helpful?