cURL
curl --request PATCH \ --url https://api.example.com/journals/editor/rename \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "journal_id": "<string>", "title": "<string>" } '
{ "success": true, "message": "<string>", "old_title": "<string>", "new_title": "<string>", "journal_id": "<string>", "timestamp": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Request model for editing a journal title.
The ID of the journal.
The title of the journal.
Successful Response
Response model for editing a journal title.
Was this page helpful?