Skip to content

Commit 7dae727

Browse files
committed
PUT /account/users/:username no longer accepts "email"
1 parent 37bfdb8 commit 7dae727

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/data/endpoints/account.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,13 +306,13 @@ endpoints:
306306
curl -H "Content-Type: application/json" \
307307
-H "Authorization: Bearer $TOKEN" \
308308
-X PUT -d '{
309-
"email": "[email protected]"
309+
"username": "newusername"
310310
}
311311
}' \
312312
https://$api_root/$version/account/users/testguy
313313
python: |
314314
my_user = linode.User(client, 'username')
315-
my_user.email = '[email protected]'
315+
my_user.username = 'newusername'
316316
my_user.save()
317317
DELETE:
318318
description: >

0 commit comments

Comments
 (0)