📊Data
Learn how to post data to the project.
Get a global data entry
GET
https://api.echo3D.com/get?key=<API_KEY>&data=<DATA>
This query allows you to get global data entries.
Query Parameters
key
string
Your API key.
data
string
A data key, e.g. scale
.
Post a global data entry
POST
https://api.echo3D.com/post?key=<API_KEY>&data=<DATA>&value=<VALUE>
This query allows you to add a global data entry.
Query Parameters
key
string
The API key.
data
string
A data key, e.g. scale
.
value
string
A data value, e.g. 2
.
Delete global data entry
POST
https://api.echo3d.com/remove?key=<API_KEY>&data=<DATA>&email=<EMAIL>
This query allows you to remove a global data entry.
Request Body
key*
String
Your API key
data*
String
A data key, e.g. scale
.
email*
String
User email
Get metadata of an entry
GET
https://api.echo3D.com/get?key=<API_KEY>&entry=<ENTRY>&data=<DATA>
The query allows you to get metadata of a specific entry. You can either query for a specific data key or for all the data associated with the entry.
Query Parameters
key
string
Your API key.
entry
string
A specific entry ID.
data
string
A data key, e.g. scale
.
Post metadata to an entry
POST
https://api.echo3D.com/post?key=<API_KEY>&entry=<ENTRY>&data=<DATA>&value=<VALUE>
This query allows you to add metadata to a specific entry.
Query Parameters
key
string
Your API key
entry
string
A specific entry ID.
data
string
A data key, e.g. scale
.
value
string
A data value, e.g. 2
.
Delete metadata from an entry
POST
https://api.echo3d.com/remove?key=<API_KEY>&entry=<ENTRY>&data=<DATA>&email=<EMAIL>
This query allows you to remove metadata to a specific entry.
Request Body
key*
String
Your API key
entry*
String
A specific entry ID.
data*
String
A data key, e.g. scale
.
email*
String
User email
Post metadata to a few entries with the same data name at the same time
POST
https://api.echo3d.com/batchpost?key=<API_KEY>&entries=<ENTRY_IDs>&data=<DATA>&value<ENTRY_VALUES>
You can set a few entries with the same data name together, even if they have a different value
Request Body
key*
String
Your API key
entries*
String
A list of entries to update, separated by a comma (',')
data*
String
A data key, e.g. scale
.
value*
String
A list of data values, corresponding with the entry IDs, separated by a comma (','). e.g. 2,5,1
. Your number of values must be the same as the number of entries you wish to update.
Query the number of clicks received by custom buttons for WebAR
GET
https://api.echo3D.com/query?key=<API_KEY>&webARButtonClick=true
Request Body
key*
String
Your API key
webARButtonClick*
String
true, to get the number of clicks
Last updated