The identify endpoint is an optional endpoint that lets you add important properties to a user's profile as key-value pairs. Doing this can give you a more complete understanding of the user at a glance. Plus, these properties can be useful for finding, sorting, and grouping users.
For example, you might add a userβs email address, membership level, or last login date to their profile. Then, you can use these details to find all users with a specific membership or other criteria.
https://api.saashound.co/identify
This endpoint allows you to send log events to SaasHound.
{ success: true, statusCode: 200,}
curl --location --request POST 'https://api.saashound.com/identify' \--header 'Authorization: Bearer <TOKEN>' \--header 'Content-Type: application/json' \--data-raw '{ "project": "my-project", "userId": "user-1254", "properties": { "city": "San Francisco", "state": "CA" }}'