Lists the caller's own plan-change requests, newest first. Accepted with the caller's license-session token (same credential as submitting).
const url = 'https://example.com/api/v1/provision/consumer/me/plan-change-requests';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/provision/consumer/me/plan-change-requestsResponses
Section titled “Responses”OK
A plan-change request and its decision state.
object
The requester’s notification email (their own address; empty for pure device activations).
Decision state of a consumer plan-change request.
True when the requested plan is active (the request was approved and applied).
A plan-change request and its decision state.
object
The requester’s notification email (their own address; empty for pure device activations).
Decision state of a consumer plan-change request.
True when the requested plan is active (the request was approved and applied).
Example
[ { "status": "Pending" }]A plan-change request and its decision state.
object
The requester’s notification email (their own address; empty for pure device activations).
Decision state of a consumer plan-change request.
True when the requested plan is active (the request was approved and applied).
Example
[ { "status": "Pending" }]Unauthorized
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"}