This guide walks you through creating your first Box Note from Markdown using the Box Notes API. By the end, you have aDocumentation Index
Fetch the complete documentation index at: https://developer.box.com/llms.txt
Use this file to discover all available pages before exploring further.
.boxnote file in your Box account created from a single API call.
Prerequisites
Before you begin, make sure you have:- A Box account with file upload permissions.
- A configured in the Box Developer Console.
- A valid access token for authentication (OAuth 2.0 or JWT).
- A target folder ID in Box where you want to create the note.
The Box Notes API requires API version
2026.0. All requests must
include the box-version: 2026.0 header.Step 1: Generate an access token
You need an access token to authenticate your API calls. To generate a developer token for testing:- Go to Developer Console > My Platform Apps.
- Click the Options menu button (…) next to your app.
- Select Generate Developer Token. The token is automatically copied to your clipboard.
Step 2: Identify your target folder
You need the folder ID where the new note has been created. To find a folder ID:- Open the folder in the Box web app. The folder ID is the number at
the end of the URL:
https://app.box.com/folder/123456789. - Alternatively, use the API endpoint.
Step 3: Create your first Box Note
Send aPOST request to the /2.0/notes/convert endpoint with your
Markdown content. The API converts the Markdown to a Box Note and
uploads it to the specified folder.
201 Created with the new file’s
information:
Step 4: Verify the note was created
Use the returnedid to retrieve the full file metadata from the
Box Files API:
.boxnote file appears.
