curl --request GET \
--url https://production-api.joinrings.com/v1/persons/{person_uuid}/activities \
--header 'x-api-key: <api-key>'import requests
url = "https://production-api.joinrings.com/v1/persons/{person_uuid}/activities"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://production-api.joinrings.com/v1/persons/{person_uuid}/activities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://production-api.joinrings.com/v1/persons/{person_uuid}/activities",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://production-api.joinrings.com/v1/persons/{person_uuid}/activities"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://production-api.joinrings.com/v1/persons/{person_uuid}/activities")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://production-api.joinrings.com/v1/persons/{person_uuid}/activities")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"activity_id": "<string>",
"object_id": "<string>",
"activity_timestamp": "<string>",
"activity_type": "<string>",
"body": "<string>",
"cc_participants": [
{
"avatar_url": "<string>",
"company_uuid": "<string>",
"email": "<string>",
"kind": "<string>",
"name": "<string>",
"person_uuid": "<string>",
"status": "<string>"
}
],
"end_time": "<string>",
"file_count": 123,
"from_email": "<string>",
"image_count": 123,
"is_current_user_participant": true,
"location": "<string>",
"participants": [
{
"avatar_url": "<string>",
"company_uuid": "<string>",
"email": "<string>",
"kind": "<string>",
"name": "<string>",
"person_uuid": "<string>",
"status": "<string>"
}
],
"start_time": "<string>",
"subject": "<string>",
"title": "<string>"
}
],
"page": 123,
"per_page": 123,
"has_more": true,
"next_cursor": "<string>",
"total": 123,
"total_is_approximate": true
}Person activities
Returns a paginated list of emails and calendar meetings where the person was a participant, ordered by date descending. Each item includes participants, from/to addresses (for emails), start/end times (for meetings), and attachment counts.
Filter parameters:
- type: email | meeting — omit to return both
- date_from: ISO date (YYYY-MM-DD), inclusive
- date_to: ISO date (YYYY-MM-DD), inclusive
Pagination:
- page: Page number (default: 1)
- per_page: Results per page (default: 10)
- include_total: return total/total_is_approximate (default: false)
curl --request GET \
--url https://production-api.joinrings.com/v1/persons/{person_uuid}/activities \
--header 'x-api-key: <api-key>'import requests
url = "https://production-api.joinrings.com/v1/persons/{person_uuid}/activities"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://production-api.joinrings.com/v1/persons/{person_uuid}/activities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://production-api.joinrings.com/v1/persons/{person_uuid}/activities",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://production-api.joinrings.com/v1/persons/{person_uuid}/activities"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://production-api.joinrings.com/v1/persons/{person_uuid}/activities")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://production-api.joinrings.com/v1/persons/{person_uuid}/activities")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"activity_id": "<string>",
"object_id": "<string>",
"activity_timestamp": "<string>",
"activity_type": "<string>",
"body": "<string>",
"cc_participants": [
{
"avatar_url": "<string>",
"company_uuid": "<string>",
"email": "<string>",
"kind": "<string>",
"name": "<string>",
"person_uuid": "<string>",
"status": "<string>"
}
],
"end_time": "<string>",
"file_count": 123,
"from_email": "<string>",
"image_count": 123,
"is_current_user_participant": true,
"location": "<string>",
"participants": [
{
"avatar_url": "<string>",
"company_uuid": "<string>",
"email": "<string>",
"kind": "<string>",
"name": "<string>",
"person_uuid": "<string>",
"status": "<string>"
}
],
"start_time": "<string>",
"subject": "<string>",
"title": "<string>"
}
],
"page": 123,
"per_page": 123,
"has_more": true,
"next_cursor": "<string>",
"total": 123,
"total_is_approximate": true
}Authorizations
Path Parameters
Query Parameters
Page number, 1-indexed. Clamped to >= 1.
Results per page (default 10). Clamped to the range 1-50 (values outside are silently capped, not rejected).
Opaque cursor from a previous response's next_cursor. When supplied, the page starts immediately after the last record of that response and page is ignored — unlike page, this cannot skip or repeat records when the data changes mid-scan. Filters and sort must stay identical for the whole scan; changing one is a 400. Not supported by every list endpoint — those that support it return next_cursor.
Filter by activity type. 'email' or 'meeting'.
email, meeting Compute and return an exact/approximate total count. Defaults to false for lower latency; total/total_is_approximate are omitted in that case. items is still fully populated, so 'fewer items than per_page' still signals the last page.
Filter activities on or after this ISO date (YYYY-MM-DD).
Filter activities on or before this ISO date (YYYY-MM-DD), inclusive.