The App Version API manages version records for the mobile application. It tracks which versions have been published, whether an update is mandatory, and which platform a version targets. Two endpoints on this path are public (no authentication required), making them suitable for the mobile app to call at startup to check for required updates.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/CLINTONARMANDO/apiregistropendientes/llms.txt
Use this file to discover all available pages before exploring further.
Endpoints under
/app/app-version that are marked public do not require authentication and can be called by the mobile app without a Bearer token. All other endpoints require authentication.List active versions (public)
GET /app/app-version/vigentes
Returns a paginated list of active app version records. This endpoint is public — no Bearer token is required.
This is useful for displaying a version history or checking which versions are currently supported.
Query parameters
Zero-based page index.
Number of records per page.
Response fields
Unique version record ID.
Semantic version string (e.g.,
1.2.0).Target platform (e.g.,
ANDROID).true if users must update to this version before continuing to use the app.Release notes or change summary.
Publication datetime in ISO 8601 format.
true if this version record is active.Get latest version (public)
GET /app/app-version/ultima
Returns the most recently registered version record. This endpoint is public — no Bearer token is required.
Use this endpoint in the mobile app’s startup routine to check whether a newer (or mandatory) version is available.
Example response
Create a version record
POST /app/app-version
Registers a new app version. Requires authentication.
Request body
Target mobile platform (e.g.,
ANDROID).Set to
true to mark this as a mandatory update. Users on older versions will be forced to update.Release notes or description of changes in this version.
Publication datetime in ISO 8601 format (e.g.
2026-05-24T00:00:00).Whether this version record is active. Defaults to
true for new records.Typical mobile startup workflow
The following sequence shows how a mobile app should use these endpoints on startup:Check obligatoria flag
If the latest version has
obligatoria: true and the installed version is older, block app access and redirect the user to the app store.