Get a specific rental rate card

get/rental-rate-cards/{rental_rate_card_id}
SecuritybearerAuth
Request
path Parameters
rental_rate_card_id
required
integer <int64> (IdParam) >= 1

Rental rate card identifier

Example: 1
query Parameters
fields
string (FieldsParam)

Comma-delimited list of the field(s) to return if only a subset is required (other fields will be returned as null for now)

Example: fields=id,name
Responses
200

Rental rate card found

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

Response samples
application/json
{
  • "id": 1,
  • "contractOwnerIds": [
    • 1
    ],
  • "name": "string",
  • "rentalProductCategoryId": 1,
  • "rentalRateCardType": "SELL",
  • "basedOnTemplateId": 1,
  • "availableFrom": "2019-08-24",
  • "availableTo": "2019-08-24",
  • "acceptOverridesFromParents": true,
  • "rentalRates": [
    • {
      • "id": 1,
      • "rentalProductId": 1,
      • "price": 0,
      • "rentalRateType": "ADVANCE",
      • "rentalRatePriceType": "RENTAL",
      • "periodsInAdvance": "STANDARD",
      • "rentalRateFrequency": "DAILY",
      • "startDate": "2019-08-24",
      • "endDate": "2019-08-24",
      • "showOnInvoice": true
      }
    ],
  • "supplierAccountId": 1
}