Check user in Segment
/user/check-user-in-segment
Example Request:
info
Identifier can either be the email or the custodial wallet address of the user you wish to check in the segment.
curl --location '{{BASE_URL}}/api/v2/user/check-user-in-segment' \
--header 'X-API-KEY: {{apiKey}}' \
--header 'Accept: application/json' \
--data-raw '{
"identifier":"solana_address",
"segment":"coin_holders"
}'
Example Response:
{
"success": true,
"message": "User does not belong to selected segment"
}