Update journals as pending post Run in API Explorer
Update 'Ready to post' or 'Pending post' or 'Rejected' journals as 'Pending post'
        PUT
    /api/v1.0/engagements/{engagementSid}/journal-entries/command/pendingpost/bulk
  
  curl \
 --request PUT 'https://journal.adra.com/api/v1.0/engagements/{engagementSid}/journal-entries/command/pendingpost/bulk' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"journalGuids":["string"]}'
    
        Request examples
  
  {
  "journalGuids": [
    "string"
  ]
}
        Response examples (200)
  
  [
  {
    "journalGuid": "string",
    "statusReason": "string",
    "statusCode": "Continue"
  }
]
        Response examples (400)
  
  {
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}
        Response examples (409)
  
  {
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}
        Response examples (default)
  
  {
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}