cURL
curl --request PUT \ --url https://api.example.com/journals/editor/create \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "title": "<string>", "team_slug": "<string>" } '
{ "success": true, "message": "<string>", "journal_id": "<string>", "journal_url": "<string>", "timestamp": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Request model for creating a journal.
The title of the journal.
The team slug that the journal is associated with, if the type is team.
team
Successful Response
Response model for creating a journal.
Was this page helpful?