GET
/
project
/
{id}
/
user
/
{user_id}
curl --request GET \
  --url https://api.basic.tech/project/{id}/user/{user_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "role": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

JWT Authorization Token header using the Bearer scheme

Path Parameters

id
string
required

Project ID

user_id
string
required

User ID

Response

200
application/json

User details retrieved successfully