cURL
curl --request GET \ --url https://api.example.com/journals/content/{journal_id} \ --header 'Authorization: Bearer <token>'
{ "success": true, "message": "<string>", "title": "<string>", "journal_id": "<string>", "content": "<string>", "timestamp": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Response model for journal content.
Was this page helpful?