Update Quiet Day
curl --request PUT \
--url https://api.thefaithapp.com/v1/care-life-moments/suppressions/{careCommunicationSuppression} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"active": false,
"pastoral_acknowledgment": false
}
'const options = {
method: 'PUT',
headers: {
'X-API-Key': '<api-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({active: false, pastoral_acknowledgment: false})
};
fetch('https://api.thefaithapp.com/v1/care-life-moments/suppressions/{careCommunicationSuppression}', 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/suppressions/{careCommunicationSuppression}"
payload = {
"active": False,
"pastoral_acknowledgment": False
}
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 quiet-day preference was updated.",
"data": {
"suppression": {
"id": 51,
"topic": "all_celebrations",
"starts_on": "2026-09-01",
"ends_on": "2026-09-30",
"pastoral_acknowledgment": false,
"active": false,
"reason": "A sensitive family season.",
"member_guidance": "A private text from a pastor is welcome.",
"created_at": "2026-07-25T09:40:00.000000Z",
"updated_at": "2026-07-25T09:40: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 Quiet Day
Updates one or more fields on a quiet-day preference owned by the authenticated member. Set active to false to keep the record without suppressing messages.
PUT
/
v1
/
care-life-moments
/
suppressions
/
{careCommunicationSuppression}
Update Quiet Day
curl --request PUT \
--url https://api.thefaithapp.com/v1/care-life-moments/suppressions/{careCommunicationSuppression} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"active": false,
"pastoral_acknowledgment": false
}
'const options = {
method: 'PUT',
headers: {
'X-API-Key': '<api-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({active: false, pastoral_acknowledgment: false})
};
fetch('https://api.thefaithapp.com/v1/care-life-moments/suppressions/{careCommunicationSuppression}', 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/suppressions/{careCommunicationSuppression}"
payload = {
"active": False,
"pastoral_acknowledgment": False
}
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 quiet-day preference was updated.",
"data": {
"suppression": {
"id": 51,
"topic": "all_celebrations",
"starts_on": "2026-09-01",
"ends_on": "2026-09-30",
"pastoral_acknowledgment": false,
"active": false,
"reason": "A sensitive family season.",
"member_guidance": "A private text from a pastor is welcome.",
"created_at": "2026-07-25T09:40:00.000000Z",
"updated_at": "2026-07-25T09:40: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
Quiet-day preference identifier.
Body
application/json
Celebration messages covered by the quiet day.
Available options:
all_celebrations, birthday, wedding_anniversary, baby_and_family First quiet day.
Last quiet day.
Whether a private pastoral acknowledgment is welcome.
Whether the quiet-day preference is active.
Optional private reason.
Maximum string length:
2000Optional private guidance.
Maximum string length:
2000Was this page helpful?