aggregator-approvals
Render the admin approve/reject page
GET
/admin/v1/aggregator-registrations/read/{id}
const url = 'https://aggregator.example.com/admin/v1/aggregator-registrations/read/example';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://aggregator.example.com/admin/v1/aggregator-registrations/read/exampleHTML page reached from the admin notification email. Verifies the signed token and renders the approval form for the given aggregator registration id. All responses (200, 400 invalid/missing token, 404 unknown aggregator, 503 backing service down) are text/html pages, so no JSON response schema is declared.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
Query Parameters
Section titled “Query Parameters”token
string
intent
string
Responses
Section titled “Responses”Default Response

