POST /api/accounts/:id/edit-request
Create a paid TokPortal profile edit request for a wallet-owned delivered account by TokPortal saved account id. Use after delivery when username, display name, bio, avatar, or link-in-bio needs to change; this is separate from in-review account corrections.
Start with a quote-only recipe. Payment signing stays in your project.
const response = await fetch("https://stableinfluencer.dev/api/accounts/:id/edit-request", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({
"type": "http",
"method": "POST",
"bodyType": "json",
"bodyFieldNames": [
"requested_biography",
"requested_username",
"requested_visible_name"
],
"pathParamNames": [
"id"
],
"queryParamNames": []
}),
});
console.log(response.status);
console.log(Object.fromEntries(response.headers));
console.log((await response.text()).slice(0, 1000));
// A valid 402 is a quote, not a completed paid call.Review the provider input schema before running this non-read-only method. No payment code is included.
- Exact route checked
not safely testable · potentially-mutating-method:POST
- Origin reachable
HEAD https://stableinfluencer.dev/ returned 200.
- Observed in cdp-bazaar
The registry record was observed and retained with provenance.
EVIDENCE
Each record has an exact-route quote outcome. Unresolved templates and potentially mutating methods are labeled instead of being invoked without provider-specific test input. A quote is still separate from a settled paid call.