Authentication
This endpoint requires API key authentication. Include your API key in the request header:
X-API-Key: your_api_key_here
Path Parameters
The unique UUID identifier of the user to retrieve
Response
Unique UUID identifier for the user
ISO 8601 timestamp of when the user was created
User’s first name (max 100 characters)
User’s last name (max 100 characters)
External system identifier for the user
curl -X GET "https://api.openwearables.com/api/v1/users/123e4567-e89b-12d3-a456-426614174000" \
-H "X-API-Key: your_api_key_here"
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"created_at": "2024-01-15T10:30:00Z",
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"external_user_id": "ext_user_12345"
}