https://webservices.vin65.com/V300/NoteService.cfc?wsdl
https://webservices.aus.vin65.com/V300/NoteService.cfc?wsdl
Use the GetNote() function to get a single note for either a customer or an order. Required fields are indicated by a '*'
Attribute | Data Type | Default | Description |
---|---|---|---|
NoteID* | UUID | UUID of the Vin65 Note |
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v300="http://V300">
<soapenv:Header/>
<soapenv:Body>
<v300:GetNote soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<Request xsi:type="get:Request" xmlns:get="http://getNote.note.V300">
<Security xsi:type="req:Security" xmlns:req="http://request.base.V300">
<Password xsi:type="xsd:string">//Your Password//</Password>
<Username xsi:type="xsd:string">//Your Username//</Username>
</Security>
<NoteID xsi:type="xsd:string">43e15e63-2264-112b-b157-70b1cc864227</NoteID>
</Request>
</v300:GetNote>
</soapenv:Body>
</soapenv:Envelope>
<?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="https://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <GetNoteResponse> <GetNoteReturn> <Errors></Errors> <IsSuccessful>true</IsSuccessful> <Note> <WebsiteID>71e67a5c-2264-112b-b1f4-a6d602ad8bb4</WebsiteID> <NoteID>43e15e63-2264-112b-b157-70b1cc864227</NoteID> <Type>Note</Type> <Subject>This is a sample subject</Subject> <Note>This is a sample note</Note> <NoteDate>2011-08-31T07:00:00</NoteDate> <RelatedTo>Contact</RelatedTo> <KeyCodeID>754a4faa-9eff-9fd7-5fb3-06656b2c47c6</KeyCodeID> <DateAdded>2011-08-31T15:10:17.767Z</DateAdded> <DateModified>2011-08-31T15:10:17.767Z</DateModified> </Note> <RecordCount>1</RecordCount> </GetNoteReturn> </GetNoteResponse> </soapenv:Body> </soapenv:Envelope>