Me

Get details of the current user.

GEThttps://api.usepylon.com/me
Response
Body
dataMe (object)
errorsarray of string

The list of errors, if any.

paginationPagination (object)
request_idstring

The request ID for tracking.

Request
const response = await fetch('https://api.usepylon.com/me', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "data": {
    "id": "text",
    "name": "text"
  },
  "errors": [
    "text"
  ],
  "pagination": {
    "cursor": "text",
    "has_next_page": false
  },
  "request_id": "text"
}