POST api/NoAccountCase/POSTNOAccountNotes
Request Information
URI Parameters
None.
Body Parameters
NoAccountNoteDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CaseNumber | integer |
None. |
|
| NoteText | string |
String length: inclusive between 0 and 1000 |
|
| CorporationCode | string |
String length: inclusive between 0 and 8000 |
|
| ECCCaseTypeId | integer |
None. |
|
| ValidFlag | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CaseNumber": 2,
"NoteText": "sample string 3",
"CorporationCode": "sample string 4",
"ECCCaseTypeId": 1,
"ValidFlag": true
}
application/xml, text/xml
Sample:
<NoAccountNoteDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL"> <CaseNumber>2</CaseNumber> <CorporationCode>sample string 4</CorporationCode> <ECCCaseTypeId>1</ECCCaseTypeId> <Id>1</Id> <NoteText>sample string 3</NoteText> <ValidFlag>true</ValidFlag> </NoAccountNoteDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AsapResponseOfNoAccountNoteDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| isSuccess | boolean |
None. |
|
| message | string |
None. |
|
| jsonObj | NoAccountNoteDTO |
None. |
|
| totalCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSuccess": true,
"message": "sample string 2",
"jsonObj": {
"Id": 1,
"CaseNumber": 2,
"NoteText": "sample string 3",
"CorporationCode": "sample string 4",
"ECCCaseTypeId": 1,
"ValidFlag": true
},
"totalCount": 3
}
application/xml, text/xml
Sample:
<AsapResponseOfNoAccountNoteDTO3NYuOdgi xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common">
<isSuccess>true</isSuccess>
<jsonObj xmlns:d2p1="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">
<d2p1:CaseNumber>2</d2p1:CaseNumber>
<d2p1:CorporationCode>sample string 4</d2p1:CorporationCode>
<d2p1:ECCCaseTypeId>1</d2p1:ECCCaseTypeId>
<d2p1:Id>1</d2p1:Id>
<d2p1:NoteText>sample string 3</d2p1:NoteText>
<d2p1:ValidFlag>true</d2p1:ValidFlag>
</jsonObj>
<message>sample string 2</message>
<totalCount>3</totalCount>
</AsapResponseOfNoAccountNoteDTO3NYuOdgi>