Apollo API Documentation

Recordings API calls


List recordings

GET /recordings/#{page}

Returns recordings (notes, comments, emails). The collection is ordered from oldest to newest.

Response

{
	"continued-at":"/recordings/2"
	"contacts":[
		{
			"id":"14633475",
			"action":"deal created",
			"author":"John Smith",
			...
		},
		{
			"id":"72600811",
			"action":"note created",
			"author":"Mark Williams",
			...
		},
		...
	]
}

List recordings since time

GET /recordings/since/#{since}/#{page}

Returns the recordings (notes, comments, emails) that have updated since the time in the query parameter. The collection is ordered from oldest to newest. The since parameter is expressed as yyyymmddhhmmss in the UTC timezone.

Response

{
	"continued-at":"/recordings/2"
	"contacts":[
		{
			"id":"14633475",
			"action":"deal created",
			"author":"John Smith",
			...
		},
		{
			"id":"72600811",
			"action":"note created",
			"author":"Mark Williams",
			...
		},
		...
	]
}