Creating a folder

Learn how to create a folder so you can store files in it.

Creating a folder is the starting point in using Keeper. You just have to provide a folder name, and we handle all the blockchain operations on our side.

🚧

Requirements

You need an API key to perform the actions on this page.
You also need the Keeper Admin Role.


Creating a folder

Create a folder by performing a standard create folder call with an API key in the header. The API key must be valid for this to work. If you don't have an API key, follow this short tutorial to get one.

Let's try it out!

curl -X POST \
  http://api.mantleblockchain.com/keeper/{{PRODUCT_ID}}/folders \
  -H 'Accept: text/plain, application/json, text/json' \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: {{API_KEY}}' \
  -d '{ "name": "{{FOLDER_NAME}}" }'

Replace the following parameters:

{{PRODUCT_ID}}: Your Product id
{{API_KEY}}: Your API key
{{FOLDER_NAME}}: The name of the new folder

👍

Congratulations!

You've created a folder in Keeper!