setStandardFlagsList sample API Call

Example Request setStandardFlagsList

  • 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/submissions/full/setStandardFlagsList?site_name=salesdemoplus

Request JSON Body Example

  • Example Request to assign the standard flag 'MS_FLAG_BLUE_DOT_NAME' to the document with ID 54104923, using the flagName and setFl elements in the request body.
{
"input":  {
    "standardFlagsList": [
        {
            "documentId": 54104923,
            "flagName": "MS_FLAG_BLUE_DOT_NAME",
            "setFl": 1
        }
    ]
  }
}

SUCCESS Response Example

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Response>
    <status>SUCCESS</status>
    <callId>d83c7acb-8e9b-4a1b-8603-103487b18573</callId>
</Response>