curl --request GET \
--url https://app.lukittu.com/api/v1/dev/teams/{teamId}/customers/{customerId} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "789e0123-e89b-12d3-a456-426614174222",
"email": "[email protected]",
"fullName": "John Doe",
"username": "johndoe",
"metadata": [
{
"key": "tier",
"value": "premium",
"locked": false
}
],
"address": {
"street": "123 Main St",
"city": "Anytown",
"state": "CA",
"country": "US",
"postalCode": "12345"
},
"discordAccount": {
"id": "111e2222-e89b-12d3-a456-426614174999",
"customerId": "789e0123-e89b-12d3-a456-426614174222",
"discordId": "123456789012345678",
"username": "johndoe_discord",
"avatar": "a1b2c3d4e5f6g7h8i9j0",
"createdAt": "2023-09-15T14:30:00Z",
"updatedAt": "2023-09-15T14:30:00Z"
},
"teamId": "123e4567-e89b-12d3-a456-426614174000",
"createdByUserId": "456e7890-e89b-12d3-a456-426614174111",
"createdAt": "2023-09-15T14:30:00Z",
"updatedAt": "2023-09-15T14:30:00Z"
},
"result": {
"timestamp": "2023-09-15T14:30:00Z",
"valid": true,
"details": "Customer found"
}
}Retrieve detailed information about a specific customer by their unique identifier.
curl --request GET \
--url https://app.lukittu.com/api/v1/dev/teams/{teamId}/customers/{customerId} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "789e0123-e89b-12d3-a456-426614174222",
"email": "[email protected]",
"fullName": "John Doe",
"username": "johndoe",
"metadata": [
{
"key": "tier",
"value": "premium",
"locked": false
}
],
"address": {
"street": "123 Main St",
"city": "Anytown",
"state": "CA",
"country": "US",
"postalCode": "12345"
},
"discordAccount": {
"id": "111e2222-e89b-12d3-a456-426614174999",
"customerId": "789e0123-e89b-12d3-a456-426614174222",
"discordId": "123456789012345678",
"username": "johndoe_discord",
"avatar": "a1b2c3d4e5f6g7h8i9j0",
"createdAt": "2023-09-15T14:30:00Z",
"updatedAt": "2023-09-15T14:30:00Z"
},
"teamId": "123e4567-e89b-12d3-a456-426614174000",
"createdByUserId": "456e7890-e89b-12d3-a456-426614174111",
"createdAt": "2023-09-15T14:30:00Z",
"updatedAt": "2023-09-15T14:30:00Z"
},
"result": {
"timestamp": "2023-09-15T14:30:00Z",
"valid": true,
"details": "Customer found"
}
}API key authentication for development endpoints.
You can create API keys in your team's settings on the Lukittu dashboard.
Include the API key in the Authorization header as: Bearer YOUR_API_KEY
Example:
Authorization: Bearer lukittu_api_key_abc123def456...Your team's UUID. You can find this value in your team's settings on the Lukittu dashboard. UUID v4 identifier
The unique identifier (UUID v4) of the customer. UUID v4 identifier
Customer found successfully
Response data
Show child attributes
Unique customer identifier
Team that owns this customer
User who created this customer record
Customer record creation timestamp
Customer record last update timestamp
Customer email address
Customer full name
Customer username
Associated Discord account information
Show child attributes
Discord account record ID
Associated customer ID
Discord user ID (snowflake)
Discord username
Discord account record creation timestamp
Discord account record last update timestamp
Discord avatar hash (null if no custom avatar)
Show child attributes