api_auth_profile_partial_update
PATCH
/api/auth/profile/
const url = 'https://example.com/api/auth/profile/';const options = {method: 'PATCH', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url https://example.com/api/auth/profile/ \ --header 'Authorization: <Authorization>'Update the current user profile
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”No response body