GET
/
users
/
get
/
{id}
curl --request GET \
  --url https://api.duohub.ai/users/get/{id} \
  --header 'X-API-Key: <api-key>'
{
  "status": "success",
  "data": {
    "id": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "email": "jsmith@example.com",
    "owner": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-API-Key
string
header
required

Your duohub API key. Type: str

Path Parameters

id
string
required

Unique identifier of the user to retrieve

Response

200 - application/json
User retrieved successfully
status
enum<string>
required
Available options:
success
data
object
required