Account Information

Get your details

This API gives you your basic details along with your plan limits.

get
Authorizations
Header parameters
X-TexAu-ContextstringRequired

Pass orgUserId and workspaceId as ‘{"orgUserId":"123","workspaceId":"123"}’

Responses
200
User details fetched successfully
application/json
get
GET /api/v1/public/me HTTP/1.1
Host: 
Authorization: Bearer JWT
X-TexAu-Context: text
Accept: */*
{
  "success": true,
  "message": "User details fetched successfully",
  "data": {
    "userId": "text",
    "firstname": "text",
    "lastname": "text",
    "email": "james@hotmail.com",
    "phone": "text",
    "workspaceName": "text",
    "workspaceId": "text",
    "limits": {
      "totalDailyExecutionTimeLeft": 1,
      "totalMonthlyExecutionTimeLeft": 1,
      "emailEnrichmentsLeft": 1
    }
  }
}

Last updated