Created
July 9, 2018 20:40
-
-
Save onefriendaday/a04404e30d4064821436a6ab84c8516d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fetch( | |
`https://mapi.storyblok.com/v1/spaces/${SPACE_ID}/stories`, | |
{ | |
method: "POST", | |
mode: "cors", | |
headers: { | |
"Content-Type": "application/json", | |
"Authorization": POWER_TOKEN | |
}, | |
body: JSON.stringify({ | |
"story": { | |
"name": "Spawned Experience2", | |
"slug": "spawned-experience2", | |
"content": { | |
"component": "experience" | |
} | |
} | |
}) | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment