addNote Sample API Call

Example Request addNote

  • Input: Required Site Short Name query parameter
    URL for use via HTTP request after Digest Authentication is performed:

    https://mc-api.manuscriptcentral.com/api/s1m/v2/document/addNote?site_name=salesdemoplus

Request JSON Body Example

This request adds a document note titled "Reviewer Feedback on Methodology" to document ID 12860676

{
    "input": {
        "documentId": 12860676,
        "noteTitle": "Reviewer Feedback on Methodology",
        "noteText": "The methodology section needs further clarification on sampling criteria."
    }
}

SUCCESS Response Example

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Response>
    <status>SUCCESS</status>
    <callId>6e4fb7c3-938b-43b7-8923-cb554d89f77a</callId>
</Response>



What’s Next