Create additional module contract cancelation amendment

Required Scopes: MEMBERSHIP_SELF_SERVICE_ADDITIONAL_MODULE_CONTRACT_WRITE

Creates additional module contract cancelation amendment for specified contract id and additional module contract id

SecurityApiKeyAuth
Request
path Parameters
contractId
required
integer <int64>

Unique ID of the main contract

additionalModuleContractId
required
integer <int64>

Unique ID of the additional module contract

Request Body schema: application/json
required
cancelationDate
required
string <date>

Date the contract should be canceled to

cancelationReasonId
required
integer <int64>

Id of the reason why the contract is canceled

Responses
200

OK

400

Validation of the request failed.

401

Authentication failed. No api-key, wrong api-key or wrong header name.

403

Authorization failed. The caller has no privilege to the given resource.

404

Entity does not exists.

409

Conflict

429

Access denied - rate limit is exceeded.

500

Unexpected system error.

post/v1/memberships/{contractId}/self-service/additional-module-contracts/{additionalModuleContractId}/ordinary-cancelation
Request samples
application/json
{
  • "cancelationDate": "2023-01-25",
  • "cancelationReasonId": 1234
}
Response samples
application/json
{
  • "success": "string"
}