List Community Group Leader Notes
curl --request GET \
--url https://api.thefaithapp.com/v1/community-groups/{groupId}/leader-notes \
--header 'Authorization: Bearer <token>' \
--header 'X-API-Key: <api-key>'const options = {
method: 'GET',
headers: {'X-API-Key': '<api-key>', Authorization: 'Bearer <token>'}
};
fetch('https://api.thefaithapp.com/v1/community-groups/{groupId}/leader-notes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/community-groups/{groupId}/leader-notes"
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"status": "Success",
"data": {
"notes": [
{
"id": 181,
"client_id": 12,
"community_group_id": 42,
"author_member_id": 301,
"member_id": 308,
"body": "Follow up about volunteering at the next gathering.",
"created_at": "2026-07-18T09:30:00.000000Z",
"updated_at": "2026-07-18T09:30:00.000000Z",
"author": {
"id": 301,
"name": "Taylor K."
},
"member": {
"id": 308,
"name": "Jordan A."
}
}
]
}
}Community Groups
List Community Group Leader Notes
Returns private leader notes for the selected group. Only group leaders, co-leaders, and hosts may view them.
GET
/
v1
/
community-groups
/
{groupId}
/
leader-notes
List Community Group Leader Notes
curl --request GET \
--url https://api.thefaithapp.com/v1/community-groups/{groupId}/leader-notes \
--header 'Authorization: Bearer <token>' \
--header 'X-API-Key: <api-key>'const options = {
method: 'GET',
headers: {'X-API-Key': '<api-key>', Authorization: 'Bearer <token>'}
};
fetch('https://api.thefaithapp.com/v1/community-groups/{groupId}/leader-notes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/community-groups/{groupId}/leader-notes"
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"status": "Success",
"data": {
"notes": [
{
"id": 181,
"client_id": 12,
"community_group_id": 42,
"author_member_id": 301,
"member_id": 308,
"body": "Follow up about volunteering at the next gathering.",
"created_at": "2026-07-18T09:30:00.000000Z",
"updated_at": "2026-07-18T09:30:00.000000Z",
"author": {
"id": 301,
"name": "Taylor K."
},
"member": {
"id": 308,
"name": "Jordan A."
}
}
]
}
}Authorizations
Public client key copied from Developer Access. The member bearer token authenticates the request.
Member access token returned by POST /v1/auth/token.
Path Parameters
Community group identifier.
Required range:
x >= 1Response
Leader notes loaded.
The response is of type object.
Was this page helpful?