Create a new customer contract RPI assignment

post/customer-contract-assignments
SecuritybearerAuth
Request
Request Body schema: application/json

New customer contract assignment

rentalProductInventoryId
required
integer <int64>

Rental Product Inventory identifier

customerContractId
required
integer <int64>

Customer contract identifier to assign RPI - must be same customer (+ optionally site) as RPI

active
boolean
Default: true

is the customer contract assignment active

Responses
200

OK

201

Created

400

Bad Request

401

Unauthorized

404

Not Found

412

Precondition Failed

500

Internal Server Error

501

Not Implemented Yet

Request samples
application/json
{
  • "rentalProductInventoryId": 0,
  • "customerContractId": 0,
  • "active": true
}
Response samples
application/json
{
  • "id": 1,
  • "rentalProductInventoryId": 0,
  • "customerContractId": 0,
  • "createdDate": "2019-08-24T14:15:22Z",
  • "active": true
}