Hello Developer!

Welcome aboard.

Space Designer 3D is an online architectural space-planning application that lets users virtually inhabit a 3D world of their creation. Its intuitive tools are user-friendly for professionals, as well as novices.

Space Designer 3D API enables third party apps and services to interact with Space Designer database remotely to create tight integration with the Client website. This documentation will get you started coding quickly and make sure you always find what you're looking for.

For more information do not hesitate to take contact with us.

How to use the API

In order to use the API, you need to obtain your partnerId (Unique Partner ID). You can also have multiple partnerIds for different apps and services you provide.

A sample CURL call

if (isset($_POST['submit'])) { $curl = curl_init('https://www.spacedesigner3d.com/api2/signup'); curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE); curl_setopt($curl, CURLOPT_POSTFIELDS, $_POST); $result = curl_exec($curl); curl_close($curl); }

Error Codes

Code Description Detail
401 Authorization error The reasy why the user is not authorized for the action; i.e., "You are not logged in."
403 Post Data Validation Error Some possibilities are : "username": [ "required field" ], "email": [ "well formed email", "required field" ]
500 Database Error Return MySQL error message, such as: Duplicate entry '[email protected]' for key 'email'