Quickstart
This guide will help you make your first API calls to the Sistema de Gestión de Propiedades API. The API is live athttps://idforideas-1.jamrdev.com.ar.
Base URL
List All Properties
The simplest way to get started is to fetch all properties. This endpoint is public and doesn’t require authentication.Response
You’ll receive an array of property objects:Get a Specific Property
To retrieve details about a specific property, use itscodigo_id:
Response
If the property doesn’t exist, you’ll receive a
404 Not Found response.Create a Property (Admin Only)
To create, update, or delete properties, you need to authenticate using HTTP Basic Auth.Response
The
codigo_id is optional. If you don’t provide it, the API will generate a unique 6-character alphanumeric ID automatically.Explore the Interactive Documentation
The API includes an interactive Swagger UI where you can test endpoints directly in your browser:Next Steps
Authentication
Learn how to set up Basic Auth for admin operations
Creating Properties
Detailed guide on creating properties
Updating Properties
Learn how to update property information
API Reference
Complete API reference documentation
Common Response Codes
| Status Code | Description |
|---|---|
200 OK | Request successful |
201 Created | Resource created successfully |
400 Bad Request | Invalid request data or validation error |
401 Unauthorized | Missing or invalid authentication credentials |
404 Not Found | Resource not found |
409 Conflict | Resource already exists (duplicate codigo_id) |