Returns an organization note by organization ID and note ID
| Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
|---|---|---|---|
| None. | SROrganizationAPI | POST | Yes. |
See topic Common Parameters.
Required. Org ID
Type xsd:int.
Required. Note ID
Type xsd:int.
See topic HTTP Status Codes.
XML response
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<getOrganizationNoteResponse xmlns="http://convio.com/crm/v1.0">
<note>
<note_id>600</note_id>
<org_id>150</org_id>
<author_id>1000050</author_id>
<subject>Example</subject>
<note_text>This is an example of a note.</note_text>
<last_updated>1445441415772</last_updated>
<date_created>1445441391228</date_created>
<author_name>blackbaud</author_name>
</note>
</getOrganizationNoteResponse>
JSON response
{"getOrganizationNoteResponse":{"note":{"org_id":"150","note_text":"This is an example of a note.","note_id":"600","subject":"Example","author_name":"blackbaud","date_created":"1445441391228","last_updated":"1445441415772","author_id":"1000050"}}}