Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save onefriendaday/a04404e30d4064821436a6ab84c8516d to your computer and use it in GitHub Desktop.
Save onefriendaday/a04404e30d4064821436a6ab84c8516d to your computer and use it in GitHub Desktop.
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