Completing the policy change

The following table summarizes the different endpoints that can be used to complete a policy change.

Outcome Endpoint Action taken
Bind the policy change now /job/v1/jobs/{jobId}/bind-and-issue Issue the policy change immediately
Withdraw the policy change /job/v1/jobs/{jobId}/withdrawn Withdraw the policy change

Example of binding the policy change

Use the following endpoint to bind the policy change:

  • POST /job/v1/jobs/{jobId}/bind-and-issue

The request object does not require a request body.

For example, the following request binds and issues job pc:333.

POST /job/v1/jobs/pc:333/bind-and-issue
                
<no request body>

The renewal's status is changed to "Bound".

Example of withdrawing a policy change

Use the following endpoint to withdraw the policy change:

  • POST /job/v1/jobs/{jobId}/withdraw

The request object does not require a body.

For example, the following request withdraws job pc:333.

POST /job/v1/jobs/pc:333/withdraw
                
<no request body>

The renewal's status is changed to "Withdrawn".