Read Notes
Retrieves the details of a Note object that has been previously created.
Parameters
Path Params | |
---|---|
yourCompany: | string |
Query Params | |
---|---|
filter: | string
List of condition abbrevations to be used: |
Header Params | |
---|---|
key: | string |
Query Auth | |
---|---|
key: | string |
Header Auth | |
---|---|
apiKey: | string |
Sample Code
{
"Notes": {
"Note": {
"NotesId": "136512",
"Subject": "Note Subject",
"ContactName": "Bob",
"RelatedToType": "SalesOrder",
"RelatedToValue": "1236",
"FileName": "Note.jpg",
"FileType": "image/jpeg",
"AttachmentContent": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==",
"CreatedTime": "08-13-2024 12:25:04",
"CreatedTimeUTC": "08-13-2024 06:55:04",
"ModifiedTime": "08-13-2024 12:27:40",
"ModifiedTimeUTC": "08-13-2024 06:57:40",
"Note": "Note content goes here."
}
}
}
<Notes>
<Note>
<NotesId>136512</NotesId>
<Subject>Note Subject</Subject>
<ContactName>Bob</ContactName>
<RelatedToType>SalesOrder</RelatedToType>
<RelatedToValue>1236</RelatedToValue>
<FileName>Note.jpg</FileName>
<FileType>image/jpeg</FileType>
<AttachmentContent>R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==</AttachmentContent>
<CreatedTime>08-13-2024 12:25:04</CreatedTime>
<CreatedTimeUTC>08-13-2024 06:55:04</CreatedTimeUTC>
<ModifiedTime>08-13-2024 12:27:40</ModifiedTime>
<ModifiedTimeUTC>08-13-2024 06:57:40</ModifiedTimeUTC>
<Note>Note content goes here.</Note>
</Note>
</Notes>
WADL
<?xml version="1.0" encoding="utf-8"?>
<application>
<resources base="https://{yourCompany}.agiliron.net/agiliron/api-40/">
<resource path="Notes">
<method name="GET">
<request>
<param name="key" type="xsd:string" style="query" required="true"/>
<param name="Filter" type="xsd:string" style="query"/>
</request>
<response status="200">
<representation mediaType="application/xml" element="yn:ResultSet"/>
</response>
<response status="400">
<representation mediaType="application/xml" element="ya:Error"/>
</response>
</method>
</resource>
</resources>
</application>
Updated about 20 hours ago