Adds a note to an organization.
| Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
|---|---|---|---|
| None. | SROrganizationAPI | POST | Yes. |
This method adds a note to an organization record in the Luminate Online database.
Input data is passed url-encoded as the value of the note parameter in the following format:
<organizationNoteRequest xmlns="http://convio.com/crm/v1.0">
<note>
<org_id>1</org_id>
<subject>Company Portfolio</subject>
<note_text>Apple makes computers, iPhones, iPods, iPads and accessories.</note_text>
</note>
</organizationNoteRequest>
See topic Common Parameters.
Required. Org ID
Type xsd:int.
Required. The XML document containing the data for an organization note.
Type xsd:string.
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"}}}