استرجاع تفاصيل حساب المستخدم الحالي

Retrieve current user's account details.

Get account information

GEThttps://api.rememberizer.ai/api/v1/account/
Response

User account information.

Body
idinteger

The unique identifier of the user.

emailstring (email)

The email address of the user.

namestring

The name of the user.

Request
const response = await fetch('https://api.rememberizer.ai/api/v1/account/', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "email": "name@gmail.com",
  "name": "text"
}

Last updated