Register For Event
curl --request POST \
--url https://api.thefaithapp.com/v1/events/{event}/register \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"registrant_name": "Jane Doe",
"registrant_email": "jane@example.com"
}
'const options = {
method: 'POST',
headers: {
'X-API-Key': '<api-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({registrant_name: 'Jane Doe', registrant_email: 'jane@example.com'})
};
fetch('https://api.thefaithapp.com/v1/events/{event}/register', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/events/{event}/register"
payload = {
"registrant_name": "Jane Doe",
"registrant_email": "jane@example.com"
}
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": "Registration successful",
"data": {
"registration": {
"id": 45,
"public_uuid": "2bd76ce2-7ae0-4a2e-9765-0fb48d98b946",
"event_id": 132,
"occurrence_date": "2026-09-06",
"party_size": 2,
"status": "registered",
"payment_status": "not_required",
"checked_in": false
},
"checkout": null
}
}{
"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": {}
}Events & Volunteers
Register For Event
Registers the authenticated member and their party for one event occurrence. The server derives member and church ownership from the credentials. Capacity is party-aware and may return a waitlisted registration.
POST
/
v1
/
events
/
{event}
/
register
Register For Event
curl --request POST \
--url https://api.thefaithapp.com/v1/events/{event}/register \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"registrant_name": "Jane Doe",
"registrant_email": "jane@example.com"
}
'const options = {
method: 'POST',
headers: {
'X-API-Key': '<api-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({registrant_name: 'Jane Doe', registrant_email: 'jane@example.com'})
};
fetch('https://api.thefaithapp.com/v1/events/{event}/register', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/events/{event}/register"
payload = {
"registrant_name": "Jane Doe",
"registrant_email": "jane@example.com"
}
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": "Registration successful",
"data": {
"registration": {
"id": 45,
"public_uuid": "2bd76ce2-7ae0-4a2e-9765-0fb48d98b946",
"event_id": 132,
"occurrence_date": "2026-09-06",
"party_size": 2,
"status": "registered",
"payment_status": "not_required",
"checked_in": false
},
"checkout": null
}
}{
"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
Event identifier.
Body
application/json
Registrant display name.
Maximum string length:
255Registrant email address.
Maximum string length:
255Optional contact phone number.
Maximum string length:
20Number of additional guests.
Required range:
0 <= x <= 20Occurrence to register for.
Meals needed by the party when the event collects meal counts.
Required range:
0 <= x <= 100Children needing childcare when the event collects childcare counts.
Required range:
0 <= x <= 100Optional attendee needs or notes when enabled by the event.
Maximum string length:
2000Was this page helpful?