Users

Get own details

Returns information about the user issuing the request

GEThttps://felt.com/api/v2/user
Authorization
Response

User

Body
emailstring
idstring (felt_id)
Example: "luCHyMruTQ6ozGk3gPJfEB"
namestring
Request
const response = await fetch('https://felt.com/api/v2/user', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "email": "text",
  "id": "luCHyMruTQ6ozGk3gPJfEB",
  "name": "text"
}

Last updated