Update account
PUT https://datafa.st/api/v1/admin/account
Update the authenticated account display name. This is the only account-level field exposed by the API — email and billing are managed in the dashboard.
Requires
analytics:read permission (as implemented).Request
Body parameters
namerequired
"Jane Doe". Required, non-empty, max 100 chars.Example request body
{
"name": "Jane Doe"
}
Response
Returns a JSON object with
status: "success" and endpoint-specific fields in data.Response fields
data[]._iddata[].namedata[].emaildata[].imageAuthentication
Use a
dft_ account token with analytics:read.Errors
400 — Missing
name, empty name, or name longer than 100 characters.See API errors for the standard error envelope, auth failures, validation errors, permission errors, and rate limits.