Applies a temporary plan override that supersedes the assigned plan for a bounded period.
const url = 'https://example.com/api/v1/provision/admin/entitlements/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/temporary-override';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"planSetId":"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0","planName":"example","validFromUtc":"2026-04-15T12:00:00Z","validUntilUtc":"2026-04-15T12:00:00Z","reason":"example","campaignId":"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/provision/admin/entitlements/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/temporary-override \ --header 'Content-Type: application/json' \ --data '{ "planSetId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "planName": "example", "validFromUtc": "2026-04-15T12:00:00Z", "validUntilUtc": "2026-04-15T12:00:00Z", "reason": "example", "campaignId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" }'Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Entitlement id.
Request Bodyrequired
Section titled “Request Bodyrequired”Cancellation token.
Request to apply a temporary usage plan override to an entitlement.
object
Start of the override window; null starts it immediately.
End of the override window; null applies it without a scheduled end.
Free-form justification recorded with the override.
Campaign the override runs under; records a PlanOverride attribution touch on the entitlement.
Examplegenerated
{ "planSetId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "planName": "example", "validFromUtc": "2026-04-15T12:00:00Z", "validUntilUtc": "2026-04-15T12:00:00Z", "reason": "example", "campaignId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}Request to apply a temporary usage plan override to an entitlement.
object
Start of the override window; null starts it immediately.
End of the override window; null applies it without a scheduled end.
Free-form justification recorded with the override.
Campaign the override runs under; records a PlanOverride attribution touch on the entitlement.
Examplegenerated
{ "planSetId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "planName": "example", "validFromUtc": "2026-04-15T12:00:00Z", "validUntilUtc": "2026-04-15T12:00:00Z", "reason": "example", "campaignId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}Request to apply a temporary usage plan override to an entitlement.
object
Start of the override window; null starts it immediately.
End of the override window; null applies it without a scheduled end.
Free-form justification recorded with the override.
Campaign the override runs under; records a PlanOverride attribution touch on the entitlement.
Examplegenerated
{ "planSetId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "planName": "example", "validFromUtc": "2026-04-15T12:00:00Z", "validUntilUtc": "2026-04-15T12:00:00Z", "reason": "example", "campaignId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}Responses
Section titled “Responses”OK
Bad Request
object
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}Not Found
object
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}