Update Private Life Moment
curl --request PUT \
--url https://api.thefaithapp.com/v1/care-life-moments/moments/{careLifeMoment} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"status": "paused",
"reminder_lead_days": 14
}
'const options = {
method: 'PUT',
headers: {
'X-API-Key': '<api-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({status: 'paused', reminder_lead_days: 14})
};
fetch('https://api.thefaithapp.com/v1/care-life-moments/moments/{careLifeMoment}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/care-life-moments/moments/{careLifeMoment}"
payload = {
"status": "paused",
"reminder_lead_days": 14
}
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text){
"status": "Success",
"message": "Your private life moment was updated.",
"data": {
"life_moment": {
"id": 73,
"kind": "grief_anniversary",
"status": "paused",
"title": "Remember Mum",
"event_date": "2026-09-14",
"next_reminder_on": "2026-09-07",
"recurrence": "yearly",
"reminder_lead_days": 14,
"member_note": "Please ask before calling.",
"has_assigned_caregiver": true,
"assigned_to_name": "Pastor Grace",
"created_at": "2026-07-25T09:35:00.000000Z",
"updated_at": "2026-07-25T09:35:00.000000Z"
}
}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}Pastoral Care
Update Private Life Moment
Updates one or more fields on a private life moment owned by the authenticated member. Set status to paused to stop pending follow-up without deleting the date.
PUT
/
v1
/
care-life-moments
/
moments
/
{careLifeMoment}
Update Private Life Moment
curl --request PUT \
--url https://api.thefaithapp.com/v1/care-life-moments/moments/{careLifeMoment} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"status": "paused",
"reminder_lead_days": 14
}
'const options = {
method: 'PUT',
headers: {
'X-API-Key': '<api-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({status: 'paused', reminder_lead_days: 14})
};
fetch('https://api.thefaithapp.com/v1/care-life-moments/moments/{careLifeMoment}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/care-life-moments/moments/{careLifeMoment}"
payload = {
"status": "paused",
"reminder_lead_days": 14
}
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text){
"status": "Success",
"message": "Your private life moment was updated.",
"data": {
"life_moment": {
"id": 73,
"kind": "grief_anniversary",
"status": "paused",
"title": "Remember Mum",
"event_date": "2026-09-14",
"next_reminder_on": "2026-09-07",
"recurrence": "yearly",
"reminder_lead_days": 14,
"member_note": "Please ask before calling.",
"has_assigned_caregiver": true,
"assigned_to_name": "Pastor Grace",
"created_at": "2026-07-25T09:35:00.000000Z",
"updated_at": "2026-07-25T09:35:00.000000Z"
}
}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}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
Private life-moment identifier.
Body
application/json
Private life-moment kind.
Available options:
birthday, grief_anniversary, illness_check_in, crisis_follow_up, hard_anniversary Example:
"grief_anniversary"
Life-moment status editable by the member.
Available options:
active, paused Example:
"active"
Private title.
Required string length:
2 - 160Private event date.
Whether the private date occurs once or yearly.
Available options:
once, yearly Example:
"yearly"
Days before the event to remind the care team.
Required range:
0 <= x <= 60Optional private guidance.
Maximum string length:
5000Was this page helpful?