Migrating to the new API
This page relates to major changes in Microreact released in 2020
Summary of breaking changes
The new Microreact API only accepts authenticated requests. Calls without an Acccess-Token
header will fail with 401 Unauthorized error.
New API
Old API
API Endpoint
https://microreact.org/api/projects/create/
https://microreact.org/api/project/
Documentation
Request body
A valid .microreact
JSON file
Old API request payload as documented in https://old.microreact.org/api-docs
Access-Token
header
Optional
Converting old API request payload
You can convert an old API request payload to a new .microreact JSON file using the schema convertor endpoint:
The response is a valid .microreact
JSON file
You can also pipe the response into the create project endpoint as in the following example:
Last updated