POST api/PostPRFNote
Request Information
URI Parameters
None.
Body Parameters
PrfNoteInfoName | Description | Type | Additional information |
---|---|---|---|
CallID | integer |
None. |
|
Note | string |
None. |
|
Services | Collection of ApiCallEmgService |
None. |
Request Formats
application/json, text/json
Sample:
{ "CallID": 1, "Note": "sample string 2", "Services": [ { "ID": 2, "CallID": 1, "ServiceID": 1, "Note": "sample string 1" }, { "ID": 2, "CallID": 1, "ServiceID": 1, "Note": "sample string 1" } ] }
application/octet-stream, multipart/form-data
Sample:
{"CallID":1,"Note":"sample string 2","Services":[{"ID":2,"CallID":1,"ServiceID":1,"Note":"sample string 1"},{"ID":2,"CallID":1,"ServiceID":1,"Note":"sample string 1"}]}
application/xml, text/xml
Sample:
<PrfController.PrfNoteInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HTMW.Controllers"> <CallID>1</CallID> <Note>sample string 2</Note> <Services> <PrfController.ApiCallEmgService> <CallID>1</CallID> <ID>2</ID> <Note>sample string 1</Note> <ServiceID>1</ServiceID> </PrfController.ApiCallEmgService> <PrfController.ApiCallEmgService> <CallID>1</CallID> <ID>2</ID> <Note>sample string 1</Note> <ServiceID>1</ServiceID> </PrfController.ApiCallEmgService> </Services> </PrfController.PrfNoteInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CallResultName | Description | Type | Additional information |
---|---|---|---|
Code | integer |
None. |
|
Message | string |
None. |
|
CallID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "Code": 1, "Message": "sample string 2", "CallID": 1 }
application/octet-stream, multipart/form-data
Sample:
{"Code":1,"Message":"sample string 2","CallID":1}
application/xml, text/xml
Sample:
<CallController.CallResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HTMW.Controllers"> <CallID>1</CallID> <Code>1</Code> <Message>sample string 2</Message> </CallController.CallResult>