Leave A Ministry
curl --request DELETE \
--url https://api.thefaithapp.com/v1/member-connections/ministries/{ministryId} \
--header 'Authorization: Bearer <token>' \
--header 'X-API-Key: <api-key>'const options = {
method: 'DELETE',
headers: {'X-API-Key': '<api-key>', Authorization: 'Bearer <token>'}
};
fetch('https://api.thefaithapp.com/v1/member-connections/ministries/{ministryId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/member-connections/ministries/{ministryId}"
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>"
}
response = requests.delete(url, headers=headers)
print(response.text){
"status": "Success",
"message": "Ministry connection ended."
}Member Connections
Leave A Ministry
Ends the authenticated member’s connection to the selected ministry and synchronizes linked chat access.
DELETE
/
v1
/
member-connections
/
ministries
/
{ministryId}
Leave A Ministry
curl --request DELETE \
--url https://api.thefaithapp.com/v1/member-connections/ministries/{ministryId} \
--header 'Authorization: Bearer <token>' \
--header 'X-API-Key: <api-key>'const options = {
method: 'DELETE',
headers: {'X-API-Key': '<api-key>', Authorization: 'Bearer <token>'}
};
fetch('https://api.thefaithapp.com/v1/member-connections/ministries/{ministryId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/member-connections/ministries/{ministryId}"
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>"
}
response = requests.delete(url, headers=headers)
print(response.text){
"status": "Success",
"message": "Ministry connection ended."
}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
Volunteer ministry identifier.
Required range:
x >= 1Response
Ministry connection ended.
The response is of type object.
Was this page helpful?