Update journals as posted
Technical Preview
Update 'Ready to post' or 'Pending post' journals as 'Posted' or override the properties of already posted journls
Path parameters
-
engagementSid
string Required The engagement SID
Body
Required
The details of the journals
-
journals
array[object] Required At least
1
but not more than1000
elements. -
bundleGuid
string(uuid) | null Required
PUT
/api/v1.0/engagements/{engagementSid}/journal-entries/command/post/bulk
curl \
--request PUT 'https://journal.adra.com/api/v1.0/engagements/{engagementSid}/journal-entries/command/post/bulk' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"journals":[{"journalGuid":"string","erpReference":"string","postComment":"string"}],"bundleGuid":"string"}'
Request examples
{
"journals": [
{
"journalGuid": "string",
"erpReference": "string",
"postComment": "string"
}
],
"bundleGuid": "string"
}
Response examples (200)
{
"journalsUpdated": [
{
"journalGuid": "string",
"statusReason": "string",
"statusCode": "Continue"
}
],
"bundleGuid": "string"
}
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"
}