Create Quiet Day
curl --request POST \
--url https://api.thefaithapp.com/v1/care-life-moments/suppressions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"topic": "all_celebrations",
"starts_on": "2026-09-01",
"ends_on": "2026-09-30"
}
'const options = {
method: 'POST',
headers: {
'X-API-Key': '<api-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({topic: 'all_celebrations', starts_on: '2026-09-01', ends_on: '2026-09-30'})
};
fetch('https://api.thefaithapp.com/v1/care-life-moments/suppressions', 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"
payload = {
"topic": "all_celebrations",
"starts_on": "2026-09-01",
"ends_on": "2026-09-30"
}
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": "Success",
"message": "Your quiet-day preference was saved.",
"data": {
"suppression": {
"id": 51,
"topic": "all_celebrations",
"starts_on": "2026-09-01",
"ends_on": "2026-09-30",
"pastoral_acknowledgment": true,
"active": true,
"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
Create Quiet Day
Creates a member-owned quiet-day window that suppresses selected celebration messages. The member may separately allow a private pastoral acknowledgment and provide restricted guidance.
POST
/
v1
/
care-life-moments
/
suppressions
Create Quiet Day
curl --request POST \
--url https://api.thefaithapp.com/v1/care-life-moments/suppressions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"topic": "all_celebrations",
"starts_on": "2026-09-01",
"ends_on": "2026-09-30"
}
'const options = {
method: 'POST',
headers: {
'X-API-Key': '<api-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({topic: 'all_celebrations', starts_on: '2026-09-01', ends_on: '2026-09-30'})
};
fetch('https://api.thefaithapp.com/v1/care-life-moments/suppressions', 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"
payload = {
"topic": "all_celebrations",
"starts_on": "2026-09-01",
"ends_on": "2026-09-30"
}
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": "Success",
"message": "Your quiet-day preference was saved.",
"data": {
"suppression": {
"id": 51,
"topic": "all_celebrations",
"starts_on": "2026-09-01",
"ends_on": "2026-09-30",
"pastoral_acknowledgment": true,
"active": true,
"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.
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. Must be on or after starts_on.
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?