Creating Projects via API
post
https://microreact.org/api/projects/create
/
Create Project
Parameters
Header
Content-Type
string
Should be
application/json; charset=utf-8
Access-Token
string
An API access token.
Body
object
A valid
.microreact
JSON document
Responses
200
A JSON document which include the ID and the URL of the project.
cURL + Bash
curl \
--header "Content-Type: application/json; charset=utf-8" \
--header "Access-Token: eyJhbGciOiJIUzUxMiJ9..." \
--data "@project.microreact" \
https://microreact.org/api/projects/create
Last modified 2d ago