Quote
Rental quotes for end customers.
GET/api/quotes/{id}
Retrieves a Quote resource.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| id | path | string | yes | Quote identifier |
Code samples
curl -X GET 'https://sandbox.partner.miete24.com/api/quotes/{id}' \
-H 'X-Api-Key: YOUR_API_KEY'
const response = await fetch('https://sandbox.partner.miete24.com/api/quotes/{id}', {
method: 'GET',
headers: {
'X-Api-Key': 'YOUR_API_KEY',
},
});
const data = await response.json();
Responses
| Status | Description | Schema |
|---|---|---|
| 200 | Quote resource | Quote |
| 404 | Resource not found | — |