API DOCS
Available Modules
- Parcel : http://fixeroffer.com/crm/read.php?documentID=21
- Listing : http://fixeroffer.com/crm/read.php?documentID=22
Usage:
GET /api/{module}/{funtion}/{additionalparams}?apikey={key}
Replace {entryid}
with the ID of the parcel you want to retrieve.
Replace {key}
with your API key for authentication.
Example:
GET /api/parcel/read/123?apikey=your_api_key
HTTP Status Codes:
- 200 OK: Successful response with parcel data.
- 400 Bad Request: Missing or invalid API key.
- 404 Not Found: Parcel not found or error in retrieval.
Sample Response (Success):
{
"entryid": 123,
"apn": "1234567890",
...
"lcprev": "LCPrev1"
}
Sample Response (Error - Invalid API Key):
{
"error": "Missing or invalid API key"
}
Sample Response (Error - Parcel Not Found):
{
"error": "Parcel not found"
}