Hi-Send Docs

Authenticated User

https://core.hisend.hunnovate.com/api/v1/projects/{project_identifier}/auth/user?api_key={api_key}

Get authenticated user


Path Parameters

project_identifier string required

The identifier or id of the project, for example project_name or 01jtk9f6xtp5bqycmj8x68040f, you can get it from the projects page on your dashboard

Headers

Authorization string required default to Bearer {token}

The token returned from the login endpoint should be used as the value of the Authorization header to access authenticated routes

Query Params

api_key string required

The api key from your dashboard

422 Error Response Example


{
    "message": "Unauthenticated or Missing Bearer Token",
}

200 Success Response Example


{
    "data": {
        "id": "********EDF23AZWNB42YTF1X",
        "email": "lawu@mailinator.com",
        "phone": "+1 (775) 766-9975",
        "last_name": "Rush",
        "first_name": "Mannix",
        "project_id": "***********2de598zt8m3k",
        "table_id": "**********g2gj5pdzq6675",
        "created_at": "2025-05-20T15:56:31.000000Z",
        "updated_at": "2025-05-21T17:11:45.000000Z",
        "email_verified_at": null,
        "phone_verified_at": null,
        "full_name": "John Doe",
    },
    "message": "Authenticated user retrieved successfully",
}