aggregator-approvals
Regenerate an expired approval link and show the confirm page
POST
/admin/v1/aggregator-registrations/renew/{id}
const url = 'https://aggregator.example.com/admin/v1/aggregator-registrations/renew/example';const options = {method: 'POST'};
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://aggregator.example.com/admin/v1/aggregator-registrations/renew/exampleReached from the “Regenerate & review” button on the expired-link page. Accepts an expired-but-signature-valid token as proof the reviewer held a legitimate link, mints a fresh decision token (preserving the org binding), and renders the approve/reject confirm page inline — no email.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
Responses
Section titled “Responses”Default Response

