Empty page after Create page

Hi I am trying to create a page using rest API with payload.
let pageData = {
type: “page”,
title: title,
ancestors: [{ id: 34 }],
space: {
key: “test”,
body: {
storage: {
value: “

This is a new page. this is not working yet.

”,
representation: “storage”
}
}
}
};

the page is getting created but there is no body. Can you please help.

My bad the storage field was inside space. It should be kept out. Made the changes and it worked fine.