Applications represent requests from profiles to join a program or season in your Campground organization. They are created when a member submits an intake form linked to a program destination. Use this endpoint to read application data for reporting, automation, or integration with external review tools. All application endpoints require an API key with theDocumentation Index
Fetch the complete documentation index at: https://docs.campground.fyi/llms.txt
Use this file to discover all available pages before exploring further.
read:applications scope. See authentication for details.
The application object
Unique identifier for the application (UUID).
ID of the profile that submitted the application.
ID of the program this application is for.
ID of the season within the program, if applicable.
null for program-level applications.Current status of the application. See the status values table below.
ISO 8601 timestamp of when the application was submitted.
ISO 8601 timestamp of the most recent status change or update.
Application status values
| Status | Description | Typical badge color |
|---|---|---|
draft | Partially filled form saved but not yet submitted. Skips required field validation. | Gray |
new | Submitted and awaiting review by an admin. | Yellow |
accepted | Approved for the program or season. | Green |
rejected | Declined. | Red |
Organizations can define additional custom statuses beyond the four standard ones. Custom statuses appear as-is in the
status field.List applications
Returns a paginated list of applications in your organization. You can filter by status, program, or season.Query parameters
Page number to return. Starts at
1.Number of applications to return per page. Maximum is
100.Filter by application status. Must be one of
draft, new, accepted, rejected, or a custom status name configured by your organization.Filter to applications for a specific program.
Filter to applications for a specific season. Can be combined with
program_id.Filter to applications submitted by a specific profile.
Response fields
Array of application objects.
Total number of applications matching the query.
true if additional pages of results exist.The ID of the organization these applications belong to.
Example
Response