curl --request PUT \
--url https://api.app.fleetit.com/v2/whoami/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"first_name": "John",
"last_name": "Doe",
"is_onboarded": true
}
'{
"id": 0,
"username": "",
"first_name": "John",
"last_name": "Doe",
"email": "",
"permission_groups": [
""
],
"is_onboarded": true
}This API endpoint allows you to update the user information.
curl --request PUT \
--url https://api.app.fleetit.com/v2/whoami/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"first_name": "John",
"last_name": "Doe",
"is_onboarded": true
}
'{
"id": 0,
"username": "",
"first_name": "John",
"last_name": "Doe",
"email": "",
"permission_groups": [
""
],
"is_onboarded": true
}Documentation Index
Fetch the complete documentation index at: https://docs.fleetit.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?