Back to Warranty API

Ownership History

GET /api/v1/warranty/{hin}/history

Returns a chronological list of all owners for a warranty, including transfer dates and notes.

Path Parameters

Parameter Type Required Description
hin string Yes Hull ID Number (12 alphanumeric chars)

Example Request

curl -X GET https://api.marquatica.com/api/v1/warranty/ABC12345DE78/history \
  -H "Authorization: Bearer <Token>"

Success Response

{
  "success": true,
  "status": 200,
  "data": {
    "hin": "ABC12345DE78",
    "model": "Model XYZ",
    "model_year": "2025",
    "history": [
      {
        "first_name": "John",
        "last_name": "Doe",
        "email": "john@example.com",
        "phone": "555-123-4567",
        "registration_date": "2025-01-15",
        "transfer_date": "2026-02-01",
        "transfer_notes": null
      },
      {
        "first_name": "Jane",
        "last_name": "Smith",
        "email": "jane@example.com",
        "phone": "555-222-3333",
        "registration_date": "2026-02-01",
        "transfer_date": null,
        "transfer_notes": "Second owner purchase via dealer"
      }
    ]
  },
  "meta": {
    "timestamp": "2025-01-15T14:30:00.000000Z",
    "version": "0.1.2"
  }
}
Try It Out
cURL Preview
GET https://api.marquatica.com/api/v1/warranty/{hin}/history
Base URL
Authorization
Bearer Token
Path Parameters
* hin required
Response
Send a request to see the response
On this page