Update a plan's device limit
PATCH
/v1/plans/{id}
const url = 'https://api.extport.dev/api/v1/plans/example';const options = { method: 'PATCH', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"maxActivations":1}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url https://api.extport.dev/api/v1/plans/example \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "maxActivations": 1 }'Only maxActivations is editable — tier is a wire contract baked into shipped extensions.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
maxActivations
required
integer
Examplegenerated
{ "maxActivations": 1}Responses
Section titled “Responses”OK
Not found