Retrieves the object of an existing note. You need to pass the unique impact.com note Id
value that was returned upon note creation or when listing notes.
Parameters
No parameters.
Returns
Returns a note object if a valid identifier is provided. Returns an error for invalid or deleted note identifiers.
Example Request
curl 'https://api.impact.com/Advertisers/<AccountSID>/Campaigns/1000/Notes/123456' \
-X GET \
-u '<AccountSID>:<AuthToken>' \
-H 'Accept: application/json'
Example Response
{
"Id": "123456",
"MediaId": "10000",
"MediaName": "Acme Partner",
"Creator": "Brand Man",
"CreationDate": "2020-09-10T10:51:23-07:00",
"ModificationDate": "2020-10-21T14:51:42-07:00",
"Content": "Meep Meep",
"Type": "NONE",
"Attachments": [],
"Uri": "/Advertisers/<AccountSID>/Campaigns/1000/Notes/123456.json"
}