Update a contract profile

patch/contract-profiles/{contract_profile_id}

Note that changing contract term or early termination charges will create a new profile version

SecuritybearerAuth
Request
path Parameters
contract_profile_id
required
integer <int64> (IdParam) >= 1

Contract profile identifier

Example: 1
Request Body schema: application/json-patch+json

A set of JSONPatch operations to be performed

Array
op
required
string

The JSON Patch operation to be performed

Enum: "add" "remove" "replace" "move" "copy" "test"
path
required
string

A JSON-Pointer

value
object

The value to be used within the operations

from
string

A string containing a JSON Pointer value

Responses
200

Success

201

Created

400

Invalid Request

401

Unauthorized

403

Forbidden

404

Not Found

Request samples
application/json-patch+json
[
  • {
    • "op": "add",
    • "path": "string",
    • "value": { },
    • "from": "string"
    }
]
Response samples
application/json
{
  • "id": 1,
  • "name": "string",
  • "contractOwnerId": 0,
  • "createdDate": "2019-08-24T14:15:22Z",
  • "contractTerm": 0,
  • "earlyTerminationFixedCharge": 0,
  • "earlyTerminationPercentageCharge": 1000,
  • "rolloverContractProfileId": 0,
  • "renewalAlertDays": 28,
  • "noticePeriodDays": 2147483647,
  • "supersededByContractProfileId": 0
}