Get current user profile
const options = {method: 'GET'};
fetch('https://api.example.com/v1/regions/global/iam/users/profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/regions/global/iam/users/profile"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}curl --request GET \
--url https://api.example.com/v1/regions/global/iam/users/profileimport requests
url = "https://api.example.com/v1/regions/global/iam/users/profile"
response = requests.get(url)
print(response.text){
"success": true,
"data": {
"id": "<string>",
"email": "jsmith@example.com",
"emailVerified": true,
"status": "active",
"name": "<string>",
"image": "<string>",
"mfaEnabled": true,
"lastLoginAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}IAM Users
Get current user profile
Get the authenticated user’s profile (self-service /users/me pattern)
GET
/
v1
/
regions
/
global
/
iam
/
users
/
profile
Get current user profile
const options = {method: 'GET'};
fetch('https://api.example.com/v1/regions/global/iam/users/profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/regions/global/iam/users/profile"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}curl --request GET \
--url https://api.example.com/v1/regions/global/iam/users/profileimport requests
url = "https://api.example.com/v1/regions/global/iam/users/profile"
response = requests.get(url)
print(response.text){
"success": true,
"data": {
"id": "<string>",
"email": "jsmith@example.com",
"emailVerified": true,
"status": "active",
"name": "<string>",
"image": "<string>",
"mfaEnabled": true,
"lastLoginAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}Was this page helpful?