POST api/journalentries
Request Information
URI Parameters
None.
Body Parameters
JournalEntryAddItems| Name | Description | Type | Additional information |
|---|---|---|---|
| JournalEntries | Collection of JournalEntryAddItem |
None. |
Request Formats
application/json, text/json
Sample:
{
"JournalEntries": [
{
"Category": 0,
"PersonID": 1,
"Subject": "sample string 2",
"Content": "sample string 3",
"RelatedObjectID": 4,
"RelatedObjectKeyID": 5
},
{
"Category": 0,
"PersonID": 1,
"Subject": "sample string 2",
"Content": "sample string 3",
"RelatedObjectID": 4,
"RelatedObjectKeyID": 5
}
]
}
application/xml, text/xml
Sample:
<JournalEntryAddItems xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<JournalEntries>
<JournalEntry>
<Category>None</Category>
<Content>sample string 3</Content>
<PersonID>1</PersonID>
<RelatedObjectID>4</RelatedObjectID>
<RelatedObjectKeyID>5</RelatedObjectKeyID>
<Subject>sample string 2</Subject>
</JournalEntry>
<JournalEntry>
<Category>None</Category>
<Content>sample string 3</Content>
<PersonID>1</PersonID>
<RelatedObjectID>4</RelatedObjectID>
<RelatedObjectKeyID>5</RelatedObjectKeyID>
<Subject>sample string 2</Subject>
</JournalEntry>
</JournalEntries>
</JournalEntryAddItems>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.