Zum Inhalt springen
Leadtime
Deutsch
Esc
↑↓navigieren↵öffnen⌘Jvorschau

Update navigation animation preference

Updates the user’s preference for left-right page navigation animations. INHERIT follows the workspace default. ON and OFF force the animation on or off for this user.

POST/account/navigation-animations
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:api:write
or
AuthorizationBearer token (JWT) · headerrequired
Request body
requiredapplication/json
valuestringrequired

Personal override for left-right page navigation animations. INHERIT follows the workspace default.

Allowed:INHERITONOFF
Responses
200
successbooleanrequired

Operation success flag

401

Unauthorized - Invalid or missing authentication token

403

Forbidden - Insufficient API scopes or permissions

404

User not found

Try it
Server
Authorization
Bodyapplication/json
Request
curl -X POST "https://leadtime.app/api/public/account/navigation-animations" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "value": "INHERIT"
}'
Response
{
  "success": true
}